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

11 lines
123 B
Nix
Raw Normal View History

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