mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-07 12:19:07 +00:00
hosts/plover: fix string interpolation for integer
This commit is contained in:
parent
b31cc58adc
commit
4adc573fcf
@ -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}" = { };
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user