diff options
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 = { |