From 4e0d8adb6fb1bb143a15b2b0ed80a82c58fbb317 Mon Sep 17 00:00:00 2001 From: Caroline Larimore Date: Fri, 7 Feb 2025 05:02:20 -0800 Subject: migration: i3 --- snowfall/modules/home/suites/desktop/default.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 snowfall/modules/home/suites/desktop/default.nix (limited to 'snowfall/modules/home/suites/desktop') 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; + }; + }; + }; +} -- cgit v1.2.3