dotfiles/nixcfgs/modules/nixos/programs/zsh.nix
2025-10-29 19:55:54 +00:00

10 lines
238 B
Nix

{...}: {
programs.zsh = {
enable = true;
histFile = "$XDG_DATA_HOME/zsh/history";
enableCompletion = true;
zsh-autoenv.enable = true;
autosuggestions.enable = true;
};
environment.pathsToLink = ["/share/zsh"];
}