diff options
-rw-r--r-- | user/settings/zsh.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/user/settings/zsh.nix b/user/settings/zsh.nix index b838e2bc..5ad9aa7f 100644 --- a/user/settings/zsh.nix +++ b/user/settings/zsh.nix @@ -30,9 +30,9 @@ in ]; home.activation.linkOldZshHistory = config.lib.dag.entryAfter ["writeBoundary"] '' - if [[ ! -f ''${XDG_DATA_HOME}/zsh/history ]]; then - mkdir -p ''${XDG_DATA_HOME}/zsh/ - ln ~/.cache/zsh/history ''${XDG_DATA_HOME}/zsh/history + if [[ ! -f ${config.home.sessionVariables.XDG_DATA_HOME}/zsh/history ]]; then + mkdir -p ${config.home.sessionVariables.XDG_DATA_HOME}/zsh/ + ln ~/.cache/zsh/history ${config.home.sessionVariables.XDG_DATA_HOME}/zsh/history fi ''; |