aboutsummaryrefslogtreecommitdiff
path: root/snowfall
diff options
context:
space:
mode:
Diffstat (limited to 'snowfall')
-rw-r--r--snowfall/modules/home/suites/common/default.nix2
-rw-r--r--snowfall/modules/home/tools/bash/default.nix15
2 files changed, 16 insertions, 1 deletions
diff --git a/snowfall/modules/home/suites/common/default.nix b/snowfall/modules/home/suites/common/default.nix
index c40f903..a25f648 100644
--- a/snowfall/modules/home/suites/common/default.nix
+++ b/snowfall/modules/home/suites/common/default.nix
@@ -10,10 +10,10 @@ in {
config = mkIf cfg.enable {
cxl = {
tools = {
+ bash.enable = true;
vim.enable = true;
git.enable = true;
};
};
};
}
-
diff --git a/snowfall/modules/home/tools/bash/default.nix b/snowfall/modules/home/tools/bash/default.nix
new file mode 100644
index 0000000..d0f0d9d
--- /dev/null
+++ b/snowfall/modules/home/tools/bash/default.nix
@@ -0,0 +1,15 @@
+{ options, config, lib, pkgs, namespace, ... }:
+
+with lib; with lib.${namespace}; let
+ cfg = config.${namespace}.tools.bash;
+in {
+ options.${namespace}.tools.bash = with types; {
+ enable = mkEnableOption "bash";
+ };
+
+ config = mkIf cfg.enable {
+ programs.bash = {
+ enable = true;
+ };
+ };
+}