opencomposite: add meta.platforms (#357198)
[NixPkgs.git] / lib / tests / modules / disable-module-with-key.nix
blobea2a60aa832d07cc1231292eccaada0feca1545f
1 { lib, ... }:
2 let
3   inherit (lib) mkOption types;
5   moduleWithKey = {
6     key = "disable-module-with-key.nix#moduleWithKey";
7     config = {
8       enable = true;
9     };
10   };
13   options = {
14     positive = mkOption {
15       type = types.submodule {
16         imports = [
17           ./declare-enable.nix
18           moduleWithKey
19         ];
20       };
21       default = {};
22     };
23     negative = mkOption {
24       type = types.submodule {
25         imports = [
26           ./declare-enable.nix
27           moduleWithKey
28         ];
29         disabledModules = [ moduleWithKey ];
30       };
31       default = {};
32     };
33   };