configuration.nix/hosts/layne/programs/zsh.nix
2024-07-03 20:03:29 +05:30

10 lines
190 B
Nix

_: {
programs = {
zsh = {
enable = true;
autosuggestions.enable = true;
syntaxHighlighting.enable = true;
};
};
environment.pathsToLink = [ "/share/zsh" ];
}