commit c7897ebb8487342878164957f9362074c942d4a9
parent a2645e72c64aa7021982e5db07d457c6b1bacebf
Author: silas <silasbrack@gmail.com>
Date: Mon, 27 Apr 2026 00:01:19 +0300
feat: increase history size
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/hosts/gaia/home.nix b/hosts/gaia/home.nix
@@ -23,6 +23,10 @@
bashrcExtra = ''
shopt -s histappend
PROMPT_COMMAND="history -a;$PROMPT_COMMAND"
+
+ export HISTCONTROL=ignoreboth
+ export HISTSIZE=65535
+ export HISTFILESIZE=65535
'';
};