aboutsummaryrefslogtreecommitdiff
path: root/snowfall/modules/home/suites/dev
diff options
context:
space:
mode:
Diffstat (limited to 'snowfall/modules/home/suites/dev')
-rw-r--r--snowfall/modules/home/suites/dev/default.nix18
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;
+ };
+ };
+ };
+}