From 2f389003e683e2b0db026bc599100dbdc9556380 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Wed, 8 May 2024 18:18:58 +0200 Subject: [PATCH] webhookBaseUrl: avoid redundant string interpolation --- nix/master.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/master.nix b/nix/master.nix index 5eda0a7..18bc93f 100644 --- a/nix/master.nix +++ b/nix/master.nix @@ -185,7 +185,7 @@ in type = lib.types.str; description = "URL base for the webhook endpoint that will be registered for github or gitea repos."; example = "https://buildbot-webhooks.numtide.com/"; - default = "${config.services.buildbot-master.buildbotUrl}"; + default = config.services.buildbot-master.buildbotUrl; }; outputsPath = lib.mkOption {