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:
@@ -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
|
||||||
'';
|
'';
|
||||||
|
|||||||
Reference in New Issue
Block a user