summary refs log tree commit diff
path: root/lib/tests/modules/declare-attrsOfSub-any-enable.nix
blob: 986d07227e13b706416ebfcdda6a4258fe66b785 (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
{ lib, ... }:

let
  submod = { ... }: {
    options = {
      enable = lib.mkOption {
        default = false;
        example = true;
        type = lib.types.bool;
        description = ''
          Some descriptive text
        '';
      };
    };
  };
in

{
  options = {
    attrsOfSub = lib.mkOption {
      default = {};
      example = {};
      type = lib.types.attrsOf (lib.types.submodule [ submod ]);
      description = ''
        Some descriptive text
      '';
    };
  };
}