diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-07 05:02:20 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:47 -0700 |
| commit | 4e0d8adb6fb1bb143a15b2b0ed80a82c58fbb317 (patch) | |
| tree | 370bc9f7a7c9f0f3b2f2ec12ad6ccc9804e476c7 /snowfall/modules/home/suites | |
| parent | cf4129bb33d19e2e9a795058aa5db75a0aa9ce36 (diff) | |
migration: i3
Diffstat (limited to 'snowfall/modules/home/suites')
| -rw-r--r-- | snowfall/modules/home/suites/desktop/default.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/snowfall/modules/home/suites/desktop/default.nix b/snowfall/modules/home/suites/desktop/default.nix new file mode 100644 index 0000000..4b1b880 --- /dev/null +++ b/snowfall/modules/home/suites/desktop/default.nix @@ -0,0 +1,17 @@ +{ options, config, lib, namespace, ... }: + +with lib; with lib.${namespace}; let + cfg = config.${namespace}.suites.desktop; +in { + options.${namespace}.suites.desktop = with types; { + enable = mkEnableOption "desktop"; + }; + + config = mkIf cfg.enable { + cxl = { + apps = { + i3.enable = true; + }; + }; + }; +} |