at 25.11-pre 211 B view raw
1{ lib, ... }: 2 3{ 4 options.set = lib.mkOption { 5 default = { }; 6 example = { 7 a = 1; 8 }; 9 type = lib.types.attrsOf lib.types.int; 10 description = '' 11 Some descriptive text 12 ''; 13 }; 14}