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