summaryrefslogtreecommitdiffstats
path: root/lib/tests/modules/declare-set.nix
blob: 884e6f34ac125f173f2db67fe58a2f6ccca7d3f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ lib, ... }:

{
  options.set = lib.mkOption {
    default = { };
    example = {
      a = 1;
    };
    type = lib.types.attrsOf lib.types.int;
    description = ''
      Some descriptive text
    '';
  };
}