configuration.nix/hosts/rico1/programs/zsh.nix

11 lines
190 B
Nix
Raw Normal View History

2023-08-15 13:06:06 +05:30
_: {
programs = {
zsh = {
enable = true;
autosuggestions.enable = true;
syntaxHighlighting.enable = true;
};
};
2023-11-04 16:12:45 +05:30
environment.pathsToLink = [ "/share/zsh" ];
2023-08-15 13:06:06 +05:30
}