hosts/plover: fix string interpolation for integer

This commit is contained in:
Gabriel Arazas 2023-09-21 21:26:13 +08:00
parent b31cc58adc
commit 4adc573fcf
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -113,7 +113,7 @@ in
listen-on-v6 tls ${dnsSubdomain} { ${listenInterfacesIpv6} }; listen-on-v6 tls ${dnsSubdomain} { ${listenInterfacesIpv6} };
# DNS-over-HTTPS. # DNS-over-HTTPS.
https-port ${dnsOverHTTPSPort}; https-port ${builtins.toString dnsOverHTTPSPort};
listen-on tls ${dnsSubdomain} http ${dnsSubdomain} { ${listenInterfaces} }; listen-on tls ${dnsSubdomain} http ${dnsSubdomain} { ${listenInterfaces} };
listen-on-v6 tls ${dnsSubdomain} http ${dnsSubdomain} { ${listenInterfacesIpv6} }; listen-on-v6 tls ${dnsSubdomain} http ${dnsSubdomain} { ${listenInterfacesIpv6} };
@ -284,7 +284,7 @@ in
zone dns 64k; zone dns 64k;
''; '';
servers = { servers = {
"127.0.0.1:${dnsOverHTTPSPort}" = { }; "127.0.0.1:${builtins.toString dnsOverHTTPSPort}" = { };
}; };
}; };