From 4adc573fcf441f36532f4e97b2125ec35c71d13f Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Thu, 21 Sep 2023 21:26:13 +0800 Subject: [PATCH] hosts/plover: fix string interpolation for integer --- hosts/plover/modules/services/bind.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hosts/plover/modules/services/bind.nix b/hosts/plover/modules/services/bind.nix index 22a718d6..ae5bf632 100644 --- a/hosts/plover/modules/services/bind.nix +++ b/hosts/plover/modules/services/bind.nix @@ -113,7 +113,7 @@ in listen-on-v6 tls ${dnsSubdomain} { ${listenInterfacesIpv6} }; # DNS-over-HTTPS. - https-port ${dnsOverHTTPSPort}; + https-port ${builtins.toString dnsOverHTTPSPort}; listen-on tls ${dnsSubdomain} http ${dnsSubdomain} { ${listenInterfaces} }; listen-on-v6 tls ${dnsSubdomain} http ${dnsSubdomain} { ${listenInterfacesIpv6} }; @@ -284,7 +284,7 @@ in zone dns 64k; ''; servers = { - "127.0.0.1:${dnsOverHTTPSPort}" = { }; + "127.0.0.1:${builtins.toString dnsOverHTTPSPort}" = { }; }; };