diff options
author | Alan Pearce | 2022-09-27 05:30:42 +0200 |
---|---|---|
committer | Alan Pearce | 2022-09-27 05:30:42 +0200 |
commit | f0f6a84e589a3db3cff1de51f52ad593d2584367 (patch) | |
tree | 8d7279064330643216c367dab09aa00958bc9815 /user | |
parent | ca5f6de7a96c90ff269323ad00d567bb65bd9e03 (diff) | |
download | nixfiles-f0f6a84e589a3db3cff1de51f52ad593d2584367.tar.lz nixfiles-f0f6a84e589a3db3cff1de51f52ad593d2584367.tar.zst nixfiles-f0f6a84e589a3db3cff1de51f52ad593d2584367.zip |
zsh: Fix HISTFILE location
Diffstat (limited to 'user')
-rw-r--r-- | user/settings/zsh.nix | 2 |
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; |