summary refs log tree commit diff
path: root/lib/tests/modules/declare-set.nix
blob: 853418531a8120301fefd08c667e7dad37b8466b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ lib, ... }:

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