1
0

Initial shared NixOS modules

This commit is contained in:
2025-06-23 17:44:56 -07:00
commit 1061e07deb
11 changed files with 464 additions and 0 deletions

10
home/default/bash.nix Normal file
View File

@@ -0,0 +1,10 @@
{ ... }:
{
programs.bash = {
enable = true;
historyFileSize = 2000000000;
historySize = 100000000;
shellOptions = [ "histappend" "cmdhist" ];
historyControl = [ "ignoredups" "ignorespace" ];
};
}