diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-07 05:31:59 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:47 -0700 |
| commit | eb16a7d8d9a90e88a1ec8d5c65d91db021b4e1e1 (patch) | |
| tree | 341c6c91c64f68c85210e8f20c493991ceaba3b7 /snowfall/modules/home/suites/common | |
| parent | 4e0d8adb6fb1bb143a15b2b0ed80a82c58fbb317 (diff) | |
migration: git config
Diffstat (limited to 'snowfall/modules/home/suites/common')
| -rw-r--r-- | snowfall/modules/home/suites/common/default.nix | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/snowfall/modules/home/suites/common/default.nix b/snowfall/modules/home/suites/common/default.nix new file mode 100644 index 0000000..c4620ee --- /dev/null +++ b/snowfall/modules/home/suites/common/default.nix @@ -0,0 +1,18 @@ +{ 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 = { + tools = { + git.enable = true; + }; + }; + }; +} + |