summary refs log tree commit diff stats
path: root/user
diff options
context:
space:
mode:
authorAlan Pearce2022-10-09 10:16:55 +0200
committerAlan Pearce2022-10-09 10:16:55 +0200
commitb33437969b10090ff0749367d8e7306013f8c887 (patch)
tree840fff6371f4eb2385a9f5eb6e9780e26b69d9c9 /user
parent2b32c4a90d995b2ba2e367fad39c03739d963fbf (diff)
downloadnixfiles-b33437969b10090ff0749367d8e7306013f8c887.tar.lz
nixfiles-b33437969b10090ff0749367d8e7306013f8c887.tar.zst
nixfiles-b33437969b10090ff0749367d8e7306013f8c887.zip
zsh: make HISTFILE path absolute again
Diffstat (limited to 'user')
-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 049f2748..6e6c04d3 100644
--- a/user/settings/zsh.nix
+++ b/user/settings/zsh.nix
@@ -42,7 +42,7 @@ in
     history = {
       expireDuplicatesFirst = true;
       extended = true;
-      path = ".local/share/zsh/history";
+      path = "$HOME/.local/share/zsh/history";
       save = 20000;
       size = 10000;
       share = false;