diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-04-14 19:27:01 -0700 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 19:27:01 -0700 |
| commit | 82aafe0333ac34614a2ee4698ffc218bddd8b9f3 (patch) | |
| tree | c470179f6b3ad25eaf7a11a80f3cd0976dacf54a /modules/home/suites/dev | |
| parent | b6d2d71e7b3fde0748cab841b5f1038da420fcdf (diff) | |
migration: overarching home desktop toggle
Diffstat (limited to 'modules/home/suites/dev')
| -rw-r--r-- | modules/home/suites/dev/default.nix | 8 |
1 files changed, 4 insertions, 4 deletions
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 = { |