nix-config/home/toast/programs/zsh.nix
2025-08-02 22:51:40 +09:00

13 lines
272 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";
};
};
}