From 0a7c65cd27328fce62ed59856aa0083be57aef25 Mon Sep 17 00:00:00 2001 From: pinpox Date: Sun, 19 Oct 2025 17:10:39 +0200 Subject: [PATCH] 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 --- nixosModules/clanCore/metadata.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/nixosModules/clanCore/metadata.nix b/nixosModules/clanCore/metadata.nix index 7e016dce0..5e1531250 100644 --- a/nixosModules/clanCore/metadata.nix +++ b/nixosModules/clanCore/metadata.nix @@ -107,8 +107,7 @@ in readOnly = true; }; tld = lib.mkOption { - default = "clan"; - type = lib.types.str; + type = types.strMatching "[a-z]+"; description = '' the TLD for the clan '';