1
Fork 0
nixos-system-config/modules/nixos/core/zsh.nix
2025-01-10 23:38:56 +01:00

10 lines
128 B
Nix

{ ... }:
{
programs.zsh = {
enable = true;
shellInit = ''
export ZDOTDIR=$HOME/.local/share/zsh
'';
};
}