From 3df9179f5d51f82163d91b8286e8f6c7e266b9d4 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sat, 15 Jan 2022 10:34:17 -0500 Subject: [PATCH] fix(zsh): correct dotDir, make history path absolute --- users/profiles/shells/zsh.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/users/profiles/shells/zsh.nix b/users/profiles/shells/zsh.nix index 8a81994..34835d0 100644 --- a/users/profiles/shells/zsh.nix +++ b/users/profiles/shells/zsh.nix @@ -17,9 +17,9 @@ ${pkgs.any-nix-shell}/bin/any-nix-shell zsh --info-right | source /dev/stdin ''; - dotDir = "${config.xdg.configHome}zsh"; + dotDir = ".config/zsh"; - history.path = "${dotDir}/.zsh_history"; + history.path = "/home/infinidoge/${dotDir}/.zsh_history"; shellAliases = main.environment.shellAliases // config.home.shellAliases;