services: allow inline modules

This commit is contained in:
Johannes Kirschbauer
2025-10-23 18:26:57 +02:00
parent ae5efd9e2f
commit f50475fcfd
3 changed files with 33 additions and 9 deletions

View File

@@ -216,7 +216,7 @@ in
options.extraModules = lib.mkOption {
default = [ ];
type = types.listOf (types.either types.deferredModule types.str);
type = types.listOf types.deferredModule;
};
}
)