fix(clan/interface): minor fixes

This commit is contained in:
Johannes Kirschbauer
2025-05-27 10:25:00 +02:00
parent 51c2f72174
commit e2e4344d83

View File

@@ -14,6 +14,7 @@ in
_prefix = lib.mkOption { _prefix = lib.mkOption {
type = types.listOf types.str; type = types.listOf types.str;
internal = true; internal = true;
visible = false;
default = [ ]; default = [ ];
}; };
self = lib.mkOption { self = lib.mkOption {
@@ -79,6 +80,8 @@ in
}; };
modules = lib.mkOption { modules = lib.mkOption {
# Correct type would be `types.attrsOf types.deferredModule` but that allows for
# Merging and transforms the value, which add eval overhead.
type = types.attrsOf types.raw; type = types.attrsOf types.raw;
default = { }; default = { };
description = '' description = ''