nix-config/home/modules/cli/zsh.nix
lightly-toasted 9082adb7af chore: update inputs
- Update flake inputs
- Update package names
- Update hyprland window rules
- Set programs.zsh.dotDir
2026-02-14 15:49:37 +09:00

16 lines
354 B
Nix

{ config, ... }: {
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";
};
dotDir = "${config.xdg.configHome}/zsh";
};
}