services/dns: add DNS-over-TLS resolver
This commit is contained in:
parent
303532b2fb
commit
91a29e5255
1 changed files with 31 additions and 7 deletions
|
@ -1,16 +1,33 @@
|
||||||
{ config, hosts, inputs, pkgs, ... }:
|
{ config, hosts, inputs, pkgs, tools, ... }:
|
||||||
# TODO: is this secure?
|
# TODO: is this secure?
|
||||||
let
|
let
|
||||||
inherit (hosts.${config.networking.hostName}) interfaces;
|
inherit (hosts.${config.networking.hostName}) interfaces;
|
||||||
|
inherit (tools.meta) domain;
|
||||||
|
dot = config.security.acme.certs."securedns.${domain}";
|
||||||
in {
|
in {
|
||||||
imports = [ ./zones.nix ];
|
imports = [ ./zones.nix ];
|
||||||
|
|
||||||
networking.firewall = {
|
networking.firewall = {
|
||||||
allowedTCPPorts = [ 53 ];
|
allowedTCPPorts = [ 53 853 ];
|
||||||
allowedUDPPorts = [ 53 ];
|
allowedUDPPorts = [ 53 853 ];
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.services.coredns.after = [ "network-addresses-vstub.service" ];
|
systemd.services.coredns = {
|
||||||
|
after = [ "network-addresses-vstub.service" ];
|
||||||
|
serviceConfig.LoadCredential = [
|
||||||
|
"dot-cert.pem:${dot.directory}/fullchain.pem"
|
||||||
|
"dot-key.pem:${dot.directory}/key.pem"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
security.acme.certs."securedns.${domain}" = {
|
||||||
|
group = "nginx";
|
||||||
|
webroot = "/var/lib/acme/acme-challenge";
|
||||||
|
# using a different ACME provider because Android Private DNS is fucky
|
||||||
|
server = "https://api.buypass.com/acme/directory";
|
||||||
|
reloadServices = [
|
||||||
|
"coredns.service"
|
||||||
|
];
|
||||||
|
};
|
||||||
services.coredns = {
|
services.coredns = {
|
||||||
enable = true;
|
enable = true;
|
||||||
config = ''
|
config = ''
|
||||||
|
@ -22,6 +39,15 @@ in {
|
||||||
chaos "Private Void DNS" info@privatevoid.net
|
chaos "Private Void DNS" info@privatevoid.net
|
||||||
forward . 127.0.0.1
|
forward . 127.0.0.1
|
||||||
}
|
}
|
||||||
|
tls://.:853 {
|
||||||
|
bind ${interfaces.primary.addr}
|
||||||
|
tls {$CREDENTIALS_DIRECTORY}/dot-cert.pem {$CREDENTIALS_DIRECTORY}/dot-key.pem
|
||||||
|
hosts ${inputs.self.packages.${pkgs.system}.stevenblack-hosts} {
|
||||||
|
fallthrough
|
||||||
|
}
|
||||||
|
chaos "Private Void DNS" info@privatevoid.net
|
||||||
|
forward . ${interfaces.primary.addr}
|
||||||
|
}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -36,19 +62,17 @@ in {
|
||||||
acl "trusted" {
|
acl "trusted" {
|
||||||
127.0.0.0/8;
|
127.0.0.0/8;
|
||||||
::1/128;
|
::1/128;
|
||||||
${interfaces.primary.addr}/32;
|
|
||||||
${interfaces.vstub.addr}/32;
|
${interfaces.vstub.addr}/32;
|
||||||
10.100.0.0/16;
|
10.100.0.0/16;
|
||||||
10.10.0.0/16;
|
10.10.0.0/16;
|
||||||
};
|
};
|
||||||
acl "publicservers" {
|
acl "publicservers" {
|
||||||
${interfaces.primary.addr}/32;
|
|
||||||
116.202.226.86/32;
|
116.202.226.86/32;
|
||||||
};
|
};
|
||||||
'';
|
'';
|
||||||
extraOptions = ''
|
extraOptions = ''
|
||||||
recursion yes;
|
recursion yes;
|
||||||
allow-recursion { trusted; };
|
allow-recursion { trusted; ${interfaces.primary.addr}/32; };
|
||||||
dnssec-validation no;
|
dnssec-validation no;
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue