summary refs log tree commit diff
path: root/lib/tests/modules/emptyValues.nix
blob: 77825de3281af272b161eee5528413af3fef5028 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ lib, ... }:
let
  inherit (lib) types;
in {

  options = {
    int = lib.mkOption {
      type = types.lazyAttrsOf types.int;
    };
    list = lib.mkOption {
      type = types.lazyAttrsOf (types.listOf types.int);
    };
    nonEmptyList = lib.mkOption {
      type = types.lazyAttrsOf (types.nonEmptyListOf types.int);
    };
    attrs = lib.mkOption {
      type = types.lazyAttrsOf (types.attrsOf types.int);
    };
    null = lib.mkOption {
      type = types.lazyAttrsOf (types.nullOr types.int);
    };
    submodule = lib.mkOption {
      type = types.lazyAttrsOf (types.submodule {});
    };
  };

  config = {
    int.a = lib.mkIf false null;
    list.a = lib.mkIf false null;
    nonEmptyList.a = lib.mkIf false null;
    attrs.a = lib.mkIf false null;
    null.a = lib.mkIf false null;
    submodule.a = lib.mkIf false null;
  };

}