13 lines
314 B
Nix
13 lines
314 B
Nix
{ ... }:
|
|
{
|
|
programs.zsh = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
syntaxHighlighting.enable = true;
|
|
shellAliases = {
|
|
ls = "ls --color=auto -F";
|
|
nixswitch = "pushd ~/.config/nix; darwin-rebuild switch --flake .#";
|
|
nixup = "pushd ~/.config/nix; nix flake update";
|
|
};
|
|
};
|
|
}
|