From 82aafe0333ac34614a2ee4698ffc218bddd8b9f3 Mon Sep 17 00:00:00 2001 From: Caroline Larimore Date: Mon, 14 Apr 2025 19:27:01 -0700 Subject: migration: overarching home desktop toggle --- modules/home/suites/dev/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'modules/home/suites/dev') diff --git a/modules/home/suites/dev/default.nix b/modules/home/suites/dev/default.nix index eb1fef9..e1e375b 100644 --- a/modules/home/suites/dev/default.nix +++ b/modules/home/suites/dev/default.nix @@ -3,7 +3,7 @@ with lib; with lib.${namespace}; let cfg = config.${namespace}.suites.dev; impermanence = config.${namespace}.impermanence; - desktop = config.${namespace}.suites.desktop; + desktop = config.${namespace}.desktop; in { options.${namespace}.suites.dev = with types; { enable = mkEnableOption "dev"; @@ -17,9 +17,9 @@ in { }; cxl = { - apps = { - vscode.enable = desktop.enable; - intellij.enable = desktop.enable; + apps = mkIf desktop.enable { + vscode.enable = true; + intellij.enable = true; }; tools = { -- cgit v1.2.3