1{ lib, ... }:
2
3with lib; {
4 options.modules.development = {
5 enable = mkOption {
6 default = false;
7 example = true;
8 description = "Whether to enable Development options.";
9 type = types.bool;
10 };
11 };
12
13 imports = [
14 ./js.nix
15 ./react-native.nix
16 ./terraform.nix
17 ./zig.nix
18 ];
19}