zsh: move history (with migration path)
Alan Pearce alan@alanpearce.eu
Thu, 04 Jun 2020 13:33:54 +0200
1 files changed, 7 insertions(+), 1 deletions(-)
jump to
M user/settings/zsh.nix → user/settings/zsh.nix
@@ -29,6 +29,12 @@ git-lfs zsh-completions ]; + home.activation.linkOldZshHistory = config.lib.dag.entryAfter ["writeBoundary"] '' + if [[ ! -f ''${XDG_DATA_HOME}/zsh/history ]]; then + ln ${toString ./.cache/zsh/history} ''${XDG_DATA_HOME}/zsh/history + fi + ''; + programs.zsh = { enable = true; @@ -41,7 +47,7 @@ history = { expireDuplicatesFirst = true; extended = true; - path = ".cache/zsh/history"; + path = "\${XDG_DATA_HOME#$HOME/}/zsh/history"; save = 20000; size = 10000; share = false;