core/lib/tests/modules/declare-attrsOfSub-any-enable.nix

32 lines
523 B
Nix
Raw Normal View History

2024-05-01 22:14:04 +00:00
{ lib, ... }:
let
2024-06-30 08:12:46 +00:00
submod =
{ ... }:
{
options = {
enable = lib.mkOption {
default = false;
example = true;
type = lib.types.bool;
description = ''
Some descriptive text
'';
};
2024-05-01 22:14:04 +00:00
};
};
in
{
options = {
attrsOfSub = lib.mkOption {
2024-06-30 08:12:46 +00:00
default = { };
example = { };
2024-05-01 22:14:04 +00:00
type = lib.types.attrsOf (lib.types.submodule [ submod ]);
description = ''
Some descriptive text
'';
};
};
}