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

11 lines
128 B
Nix
Raw Normal View History

2025-01-10 23:38:56 +01:00
{ ... }:
{
programs.zsh = {
enable = true;
shellInit = ''
export ZDOTDIR=$HOME/.local/share/zsh
'';
};
}