nixpkgs/lib/tests/modules/declare-set.nix
2022-03-03 00:29:11 +01: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
'';
};
}