From cbc125670e86c7ce9419b6e84fefeaa5c6ef20b4 Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Mon, 6 Jul 2020 12:48:18 +0200 Subject: zsh: fix XDG_DATA_HOME error on first install --- user/settings/zsh.nix | 6 +++--- 1 file 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 ''; -- cgit 1.4.1