core/lib/tests/modules/declare-set.nix
2024-06-30 09:16:52 +01:00

15 lines
211 B
Nix

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