diff options
Diffstat (limited to '')
-rw-r--r-- | modules/development/default.nix | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/development/default.nix b/modules/development/default.nix index 486a220..cf87897 100644 --- a/modules/development/default.nix +++ b/modules/development/default.nix @@ -11,6 +11,7 @@ in { c = mkEnableOption "Enable c/c++ development tools."; java = mkEnableOption "Enable java/kotlin development tools."; rust = mkEnableOption "Enable rust development tools."; + web = mkEnableOption "Enable web development tools."; zig = mkEnableOption "Enable zig development tools."; }; @@ -40,6 +41,9 @@ in { kotlin-language-server maven ]) + ++ (optionals cfg.web [ + sassc + ]) ++ (optionals cfg.zig [ zig zls |