configuration.nix/hosts/rico2/programs/zsh.nix
2023-05-27 21:11:38 +05:30

10 lines
192 B
Nix

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