aboutsummaryrefslogtreecommitdiff
path: root/snowfall/modules/home/suites/desktop
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2025-02-07 05:02:20 -0800
committerCaroline Larimore <caroline@larimo.re>2025-04-14 18:58:47 -0700
commit4e0d8adb6fb1bb143a15b2b0ed80a82c58fbb317 (patch)
tree370bc9f7a7c9f0f3b2f2ec12ad6ccc9804e476c7 /snowfall/modules/home/suites/desktop
parentcf4129bb33d19e2e9a795058aa5db75a0aa9ce36 (diff)
migration: i3
Diffstat (limited to 'snowfall/modules/home/suites/desktop')
-rw-r--r--snowfall/modules/home/suites/desktop/default.nix17
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;
+ };
+ };
+ };
+}