mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 19:45:40 +00:00
14 lines
297 B
Nix
14 lines
297 B
Nix
{ pkgs, ... }: {
|
|
|
|
programs.zsh = {
|
|
enable = true;
|
|
enableCompletion = true;
|
|
autosuggestion.enable = true;
|
|
syntaxHighlighting.enable = true;
|
|
|
|
shellAliases = {
|
|
update = "sudo nixos-rebuild switch --flake /home/toast/nix-config";
|
|
gs = "git status";
|
|
};
|
|
};
|
|
}
|