1
Fork 0
nixos-system-config/modules/nixos/core/zsh.nix

10 lines
123 B
Nix

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