Fix meta.tld option

The option curretly keeps it default value, even if set. This fixes the
value being passed through correctly, so that the user-specified value
is actually used.

Fixes: #5669
This commit is contained in:
pinpox
2025-10-19 17:10:39 +02:00
parent bd13eb3e23
commit 0a7c65cd27

View File

@@ -107,8 +107,7 @@ in
readOnly = true; readOnly = true;
}; };
tld = lib.mkOption { tld = lib.mkOption {
default = "clan"; type = types.strMatching "[a-z]+";
type = lib.types.str;
description = '' description = ''
the TLD for the clan the TLD for the clan
''; '';