configuration.nix/hosts/rico2/programs/zsh.nix

11 lines
190 B
Nix
Raw Normal View History

2023-07-11 22:41:18 +05:30
_: {
2023-05-27 20:09:10 +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-05-27 20:09:10 +05:30
}