main
1{
2 flake.modules.nixos.core = _: {
3 programs.bash.enable = true;
4 };
5
6 flake.modules.homeManager.core = _: {
7 programs.bash = {
8 enable = true;
9 enableCompletion = true;
10 };
11 };
12}