home: split programs/services into their own modules

This commit is contained in:
2024-11-19 10:42:23 +01:00
parent b8bd8612bb
commit 4e1eb31336
16 changed files with 97 additions and 47 deletions
+11
View File
@@ -0,0 +1,11 @@
{ config, ... }:
{
programs.bash = {
enable = true;
historyFile = "${config.xdg.dataHome}/bash_history";
historySize = 100000;
bashrcExtra = ''
source "${config.xdg.configHome}/mutable_env.sh"
'';
};
}