nix-config/home/toast/modules/zsh.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";
};
};
}