configuration.nix/hosts/bifrost/programs/zsh.nix

11 lines
190 B
Nix
Raw Normal View History

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