Initial shared NixOS modules
This commit is contained in:
10
home/default/bash.nix
Normal file
10
home/default/bash.nix
Normal file
@@ -0,0 +1,10 @@
|
||||
{ ... }:
|
||||
{
|
||||
programs.bash = {
|
||||
enable = true;
|
||||
historyFileSize = 2000000000;
|
||||
historySize = 100000000;
|
||||
shellOptions = [ "histappend" "cmdhist" ];
|
||||
historyControl = [ "ignoredups" "ignorespace" ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user