3 inherit (lib) mkOption types;
6 options.examples = mkOption {
7 type = types.lazyAttrsOf
9 { message = "We require a single definition, because seeing the whole value at once helps us maintain critical invariants of our system."; }
10 (types.attrsOf types.str));
13 { examples.merged = { b = "bee"; }; }
14 { examples.override = lib.mkForce { b = "bee"; }; }