diff options
| author | Caroline Larimore <caroline@larimo.re> | 2025-02-07 18:23:53 -0800 |
|---|---|---|
| committer | Caroline Larimore <caroline@larimo.re> | 2025-04-14 18:58:47 -0700 |
| commit | fe3afdd7fbbb64d687ac728843543e28ab1ff1fd (patch) | |
| tree | 06f0623d8a44d4bffc611c62ca12d8e3138a0dbe /snowfall/modules/home/suites | |
| parent | 91012170228909732af9d1b3b6ad15e2f9f7953e (diff) | |
migration: vscode
Diffstat (limited to 'snowfall/modules/home/suites')
| -rw-r--r-- | snowfall/modules/home/suites/dev/default.nix | 18 |
1 files changed, 18 insertions, 0 deletions
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; + }; + }; + }; +} |