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

11 lines
194 B
Nix
Raw Normal View History

2023-05-27 20:09:10 +05:30
{ ... }: {
programs = {
zsh = {
enable = true;
autosuggestions.enable = true;
syntaxHighlighting.enable = true;
};
};
environment.pathsToLink = ["/share/zsh"];
}