mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 11:35:41 +00:00
15 lines
307 B
Nix
15 lines
307 B
Nix
{ pkgs, ... }: {
|
|
|
|
programs.zsh = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
autosuggestion.enable = true;
|
|
syntaxHighlighting.enable = true;
|
|
|
|
shellAliases = {
|
|
gs = "git status";
|
|
gl = "git log --oneline --graph --decorate --all";
|
|
ga = "git add --all";
|
|
};
|
|
};
|
|
}
|