1
0
Files

11 lines
220 B
Nix
Raw Permalink Normal View History

2025-06-23 17:44:56 -07:00
{ ... }:
{
programs.bash = {
enable = true;
historyFileSize = 2000000000;
historySize = 100000000;
shellOptions = [ "histappend" "cmdhist" ];
historyControl = [ "ignoredups" "ignorespace" ];
};
}