mirror of
https://github.com/nix-community/home-manager
synced 2024-12-19 16:29:47 +01:00
zsh: made ZDOTDIR export to the shell (#4619)
This commit is contained in:
parent
8e5416b478
commit
9bc7d84b82
1 changed files with 1 additions and 1 deletions
|
@ -492,7 +492,7 @@ in
|
||||||
|
|
||||||
(mkIf (cfg.dotDir != null) {
|
(mkIf (cfg.dotDir != null) {
|
||||||
home.file."${relToDotDir ".zshenv"}".text = ''
|
home.file."${relToDotDir ".zshenv"}".text = ''
|
||||||
ZDOTDIR=${zdotdir}
|
export ZDOTDIR=${zdotdir}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
# When dotDir is set, only use ~/.zshenv to source ZDOTDIR/.zshenv,
|
# When dotDir is set, only use ~/.zshenv to source ZDOTDIR/.zshenv,
|
||||||
|
|
Loading…
Reference in a new issue