diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-04 17:28:45 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:44 -0700 |
| commit | e45aca9d0cbda0559fb3c6a8075e029faa9c58ac (patch) | |
| tree | 17d9e668d56344206247e74ff8ed12e004729193 /snowfall/modules/nixos/suites/common/default.nix | |
| parent | ef4b43dfad047cbd3219deaab8f50b8cd4bc1891 (diff) | |
migration: bash config
Diffstat (limited to 'snowfall/modules/nixos/suites/common/default.nix')
| -rw-r--r-- | snowfall/modules/nixos/suites/common/default.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/snowfall/modules/nixos/suites/common/default.nix b/snowfall/modules/nixos/suites/common/default.nix new file mode 100644 index 0000000..0090ba3 --- /dev/null +++ b/snowfall/modules/nixos/suites/common/default.nix @@ -0,0 +1,17 @@ +{ options, config, lib, namespace, ... }: + +with lib; with lib.${namespace}; let + cfg = config.${namespace}.suites.common; +in { + options.${namespace}.suites.common = with types; { + enable = mkEnableOption "common"; + }; + + config = mkIf cfg.enable { + cxl = { + apps = { + bash.enable = true; + }; + }; + }; +} |