fix(zsh): correct dotDir, make history path absolute

This commit is contained in:
Infinidoge 2022-01-15 10:34:17 -05:00
parent 48670cf486
commit 3df9179f5d

View file

@ -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;