From c6d21493ef48584c64d84759c0a021abcc84195a Mon Sep 17 00:00:00 2001 From: Bruno BELANYI Date: Wed, 23 Jun 2021 23:14:01 +0200 Subject: [PATCH] home: zsh: explicitly set history save size Turns out the `history.save` limit is for what is *loaded into memory*, not what is written to disk. --- home/zsh/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/home/zsh/default.nix b/home/zsh/default.nix index b602149..96ec251 100644 --- a/home/zsh/default.nix +++ b/home/zsh/default.nix @@ -14,6 +14,7 @@ in history = { size = 500000; + save = 500000; extended = false; ignoreSpace = true; ignoreDups = true;