summary refs log tree commit diff stats
path: root/user/settings/zsh.nix
diff options
context:
space:
mode:
authorAlan Pearce2022-09-27 05:30:42 +0200
committerAlan Pearce2022-09-27 05:30:42 +0200
commitf0f6a84e589a3db3cff1de51f52ad593d2584367 (patch)
tree8d7279064330643216c367dab09aa00958bc9815 /user/settings/zsh.nix
parentca5f6de7a96c90ff269323ad00d567bb65bd9e03 (diff)
downloadnixfiles-f0f6a84e589a3db3cff1de51f52ad593d2584367.tar.lz
nixfiles-f0f6a84e589a3db3cff1de51f52ad593d2584367.tar.zst
nixfiles-f0f6a84e589a3db3cff1de51f52ad593d2584367.zip
zsh: Fix HISTFILE location
Diffstat (limited to 'user/settings/zsh.nix')
-rw-r--r--user/settings/zsh.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/user/settings/zsh.nix b/user/settings/zsh.nix
index 362f70fe..049f2748 100644
--- a/user/settings/zsh.nix
+++ b/user/settings/zsh.nix
@@ -42,7 +42,7 @@ in
     history = {
       expireDuplicatesFirst = true;
       extended = true;
-      path = "\${XDG_DATA_HOME}/zsh/history";
+      path = ".local/share/zsh/history";
       save = 20000;
       size = 10000;
       share = false;