From fe3afdd7fbbb64d687ac728843543e28ab1ff1fd Mon Sep 17 00:00:00 2001 From: Caroline Larimore Date: Fri, 7 Feb 2025 18:23:53 -0800 Subject: migration: vscode --- snowfall/modules/home/suites/dev/default.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 snowfall/modules/home/suites/dev/default.nix (limited to 'snowfall/modules/home/suites/dev') diff --git a/snowfall/modules/home/suites/dev/default.nix b/snowfall/modules/home/suites/dev/default.nix new file mode 100644 index 0000000..2884897 --- /dev/null +++ b/snowfall/modules/home/suites/dev/default.nix @@ -0,0 +1,18 @@ +{ options, config, lib, namespace, ... }: + +with lib; with lib.${namespace}; let + cfg = config.${namespace}.suites.dev; + desktop = config.${namespace}.suites.desktop; +in { + options.${namespace}.suites.dev = with types; { + enable = mkEnableOption "dev"; + }; + + config = mkIf cfg.enable { + cxl = { + apps = { + vscode.enable = desktop.enable; + }; + }; + }; +} -- cgit v1.2.3