nixos/kanidm: fix instanceUrl defaultText (#476319)

This commit is contained in:
Aleksana
2026-01-03 07:18:07 +00:00
committed by GitHub
+1 -1
View File
@@ -394,7 +394,7 @@ in
instanceUrl = mkOption {
description = "The instance url to which the provisioning tool should connect.";
default = "https://localhost:${serverPort}";
defaultText = ''"https://localhost:<port from serverSettings.bindaddress>"'';
defaultText = "https://localhost:<port from serverSettings.bindaddress>";
type = types.str;
};