nixos/kanidm: fix instanceUrl defaultText

This commit is contained in:
Robert Schütz
2026-01-02 10:13:40 -08:00
parent 0d3e38e0d5
commit 29ee69dc27
+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;
};