diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-07 18:34:37 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:47 -0700 |
| commit | 671c9acdb9875584ec168913682963d06bd9c695 (patch) | |
| tree | c432e0035e9243c52cdfbd788bd43b9f130fd6a6 /snowfall/modules/home/tools/bash | |
| parent | c9becd28bf4c7acd30340512eb1cb1da105f9da7 (diff) | |
migration: home-manager bash
Diffstat (limited to 'snowfall/modules/home/tools/bash')
| -rw-r--r-- | snowfall/modules/home/tools/bash/default.nix | 15 |
1 files changed, 15 insertions, 0 deletions
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; + }; + }; +} |