webhookBaseUrl: avoid redundant string interpolation

This commit is contained in:
Jörg Thalheim 2024-05-08 18:18:58 +02:00 committed by mergify[bot]
parent 760aec7e07
commit 2f389003e6

View file

@ -185,7 +185,7 @@ in
type = lib.types.str; type = lib.types.str;
description = "URL base for the webhook endpoint that will be registered for github or gitea repos."; description = "URL base for the webhook endpoint that will be registered for github or gitea repos.";
example = "https://buildbot-webhooks.numtide.com/"; example = "https://buildbot-webhooks.numtide.com/";
default = "${config.services.buildbot-master.buildbotUrl}"; default = config.services.buildbot-master.buildbotUrl;
}; };
outputsPath = lib.mkOption { outputsPath = lib.mkOption {