Merge pull request #53 from aanderse/fixup/types

fixup: use types.attrs instead of the nonexistent types.freeform
This commit is contained in:
Ramses 2023-11-10 21:20:11 +01:00 committed by GitHub
commit 21f0f70cc2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -75,14 +75,14 @@
services.logrotate = lib.mkOption {
internal = true;
default = { };
type = types.freeform;
type = types.attrs;
};
# No-op option for now.
users = lib.mkOption {
internal = true;
default = { };
type = types.freeform;
type = types.attrs;
};
networking = {