zope2 module: optionSet -> submodule

This commit is contained in:
Eric Sagnes
2016-09-13 12:53:12 +09:00
parent c16d03ddc5
commit 03ee88f666
+1 -2
View File
@@ -74,7 +74,7 @@ in
services.zope2.instances = mkOption { services.zope2.instances = mkOption {
default = {}; default = {};
type = types.loaOf types.optionSet; type = with types; loaOf (submodule zope2Opts);
example = literalExample '' example = literalExample ''
{ {
plone01 = { plone01 = {
@@ -96,7 +96,6 @@ in
} }
''; '';
description = "zope2 instances to be created automaticaly by the system."; description = "zope2 instances to be created automaticaly by the system.";
options = [ zope2Opts ];
}; };
}; };