mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2026-03-22 20:56:42 +00:00
- Update flake inputs - Update package names - Update hyprland window rules - Set programs.zsh.dotDir
16 lines
354 B
Nix
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";
|
|
};
|
|
}
|