nixos-config/modules/home/cli/bash.nix
Sridhar Ratnakumar 2803fdb50f no vte
2026-04-07 10:42:03 -04:00

14 lines
570 B
Nix

{
programs.bash = {
enable = true;
enableCompletion = true;
historyControl = [ "ignoredups" "ignorespace" ]; # Don't save duplicate commands or commands starting with space
historySize = 10000; # Keep more commands in memory for better recall
historyFileSize = 100000; # Persist more commands to disk for long-term history
shellOptions = [
"histappend" # Append to history file instead of overwriting
"checkwinsize" # Check window size after each command
"cdspell" # Correct minor spelling errors in cd commands
];
};
}