dotfiles/flakes/common/nix_modules/zsh.nix
2025-11-25 18:31:20 -06:00

13 lines
179 B
Nix

{
pkgs,
...
}:
{
programs.zsh = {
enable = true;
enableCompletion = true;
};
environment.pathsToLink = [ "/share/zsh" ];
users.defaultUserShell = pkgs.zsh;
}