lazy: allow null package

This commit is contained in:
Ching Pei Yang 2024-11-26 15:15:02 +01:00
commit c4ba376478
No known key found for this signature in database
GPG key ID: B3841364253DC4C8
2 changed files with 3 additions and 3 deletions

View file

@ -66,8 +66,8 @@
lznPluginType = submodule {
options = {
package = mkOption {
type = pluginType;
description = "Plugin package";
type = nullOr pluginType;
description = "Plugin package. If null, a custom load function must be provided";
};
setupModule = mkOption {