config-new/modules/linux/zsh.nix
2025-05-24 15:38:19 +02:00

11 lines
227 B
Nix

{
home-manager.sharedModules = [{
programs.zsh = {
enable = true;
enableCompletion = true;
autocd = true;
autosuggestion.enable = true;
};
}];
environment.pathsToLink = [ "/share/zsh" ];
}