···129129130130 certs = mkOption {
131131 default = { };
132132- type = with types; loaOf (submodule certOpts);
132132+ type = with types; attrsOf (submodule certOpts);
133133 description = ''
134134 Attribute set of certificates to get signed and renewed.
135135 '';
+2-2
nixos/modules/services/logging/logcheck.nix
···184184 description = ''
185185 This option defines extra ignore rules.
186186 '';
187187- type = with types; loaOf (submodule ignoreOptions);
187187+ type = with types; attrsOf (submodule ignoreOptions);
188188 };
189189190190 ignoreCron = mkOption {
···192192 description = ''
193193 This option defines extra ignore rules for cronjobs.
194194 '';
195195- type = with types; loaOf (submodule ignoreCronOptions);
195195+ type = with types; attrsOf (submodule ignoreCronOptions);
196196 };
197197198198 extraGroups = mkOption {
···88 options.services.tahoe = {
99 introducers = mkOption {
1010 default = {};
1111- type = with types; loaOf (submodule {
1111+ type = with types; attrsOf (submodule {
1212 options = {
1313 nickname = mkOption {
1414 type = types.str;
···4949 };
5050 nodes = mkOption {
5151 default = {};
5252- type = with types; loaOf (submodule {
5252+ type = with types; attrsOf (submodule {
5353 options = {
5454 nickname = mkOption {
5555 type = types.str;
+2-2
nixos/modules/services/networking/tinc.nix
···18181919 networks = mkOption {
2020 default = { };
2121- type = with types; loaOf (submodule {
2121+ type = with types; attrsOf (submodule {
2222 options = {
23232424 extraConfig = mkOption {
···59596060 hosts = mkOption {
6161 default = { };
6262- type = types.loaOf types.lines;
6262+ type = types.attrsOf types.lines;
6363 description = ''
6464 The name of the host in the network as well as the configuration for that host.
6565 This name should only contain alphanumerics and underscores.
+1-1
nixos/modules/services/networking/znc.nix
···208208209209 networks = mkOption {
210210 default = { };
211211- type = with types; loaOf (submodule networkOpts);
211211+ type = with types; attrsOf (submodule networkOpts);
212212 description = ''
213213 IRC networks to connect the user to.
214214 '';
+1-1
nixos/modules/services/web-servers/zope2.nix
···74747575 services.zope2.instances = mkOption {
7676 default = {};
7777- type = with types; loaOf (submodule zope2Opts);
7777+ type = with types; attrsOf (submodule zope2Opts);
7878 example = literalExample ''
7979 {
8080 plone01 = {