11 lines
220 B
Nix
11 lines
220 B
Nix
|
|
{ ... }:
|
||
|
|
{
|
||
|
|
programs.bash = {
|
||
|
|
enable = true;
|
||
|
|
historyFileSize = 2000000000;
|
||
|
|
historySize = 100000000;
|
||
|
|
shellOptions = [ "histappend" "cmdhist" ];
|
||
|
|
historyControl = [ "ignoredups" "ignorespace" ];
|
||
|
|
};
|
||
|
|
}
|