core/nodes/1_lib/source/tests/modules/declare-set.nix
2024-05-25 10:31:17 -04:00

13 lines
201 B
Nix

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