From 9bc7d84b8213255ecd5eb6299afdb77c36ece71d Mon Sep 17 00:00:00 2001 From: Nova Leary Date: Tue, 31 Oct 2023 18:35:15 -0500 Subject: [PATCH] zsh: made ZDOTDIR export to the shell (#4619) --- modules/programs/zsh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/programs/zsh.nix b/modules/programs/zsh.nix index 25c988c35..c282c8325 100644 --- a/modules/programs/zsh.nix +++ b/modules/programs/zsh.nix @@ -492,7 +492,7 @@ in (mkIf (cfg.dotDir != null) { home.file."${relToDotDir ".zshenv"}".text = '' - ZDOTDIR=${zdotdir} + export ZDOTDIR=${zdotdir} ''; # When dotDir is set, only use ~/.zshenv to source ZDOTDIR/.zshenv,