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

11 lines
192 B
Nix
Raw Normal View History

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