2023-03-05 22:21:10 +02:00
|
|
|
{ config, hosts, inputs, lib, pkgs, tools, ... }:
|
2022-08-07 20:58:37 +03:00
|
|
|
|
2021-10-16 21:20:16 +03:00
|
|
|
let
|
|
|
|
inherit (hosts.${config.networking.hostName}) interfaces;
|
2022-06-19 15:04:46 +03:00
|
|
|
inherit (tools.meta) domain;
|
2022-08-07 20:58:37 +03:00
|
|
|
inherit (config.links) localRecursor;
|
|
|
|
inherit (inputs.self.packages.${pkgs.system}) stevenblack-hosts;
|
2022-06-19 15:04:46 +03:00
|
|
|
dot = config.security.acme.certs."securedns.${domain}";
|
2022-08-07 20:58:37 +03:00
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
links.localRecursor = {};
|
2021-10-16 21:20:16 +03:00
|
|
|
|
|
|
|
networking.firewall = {
|
2022-08-07 20:58:37 +03:00
|
|
|
allowedTCPPorts = [ 853 ];
|
|
|
|
allowedUDPPorts = [ 853 ];
|
2021-10-16 21:20:16 +03:00
|
|
|
};
|
|
|
|
|
2022-06-19 15:04:46 +03:00
|
|
|
systemd.services.coredns = {
|
2023-03-05 22:21:10 +02:00
|
|
|
after = lib.optional (interfaces ? vstub) "network-addresses-vstub.service";
|
2022-06-19 15:04:46 +03:00
|
|
|
serviceConfig.LoadCredential = [
|
|
|
|
"dot-cert.pem:${dot.directory}/fullchain.pem"
|
|
|
|
"dot-key.pem:${dot.directory}/key.pem"
|
|
|
|
];
|
|
|
|
};
|
2022-08-07 20:58:37 +03:00
|
|
|
|
2022-06-19 15:04:46 +03:00
|
|
|
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"
|
|
|
|
];
|
|
|
|
};
|
2022-08-07 20:58:37 +03:00
|
|
|
|
2021-10-16 21:20:16 +03:00
|
|
|
services.coredns = {
|
|
|
|
enable = true;
|
|
|
|
config = ''
|
|
|
|
. {
|
2023-03-05 22:21:10 +02:00
|
|
|
${lib.optionalString (interfaces ? vstub) "bind ${interfaces.vstub.addr}"}
|
2022-08-07 20:58:37 +03:00
|
|
|
bind 127.0.0.1
|
|
|
|
hosts ${stevenblack-hosts} {
|
2021-10-16 21:20:16 +03:00
|
|
|
fallthrough
|
|
|
|
}
|
|
|
|
chaos "Private Void DNS" info@privatevoid.net
|
2022-08-07 20:58:37 +03:00
|
|
|
forward . ${localRecursor.tuple}
|
2021-10-16 21:20:16 +03:00
|
|
|
}
|
2022-06-19 15:04:46 +03:00
|
|
|
tls://.:853 {
|
|
|
|
bind ${interfaces.primary.addr}
|
|
|
|
tls {$CREDENTIALS_DIRECTORY}/dot-cert.pem {$CREDENTIALS_DIRECTORY}/dot-key.pem
|
2022-08-07 20:58:37 +03:00
|
|
|
hosts ${stevenblack-hosts} {
|
2022-06-19 15:04:46 +03:00
|
|
|
fallthrough
|
|
|
|
}
|
|
|
|
chaos "Private Void DNS" info@privatevoid.net
|
2022-08-07 20:58:37 +03:00
|
|
|
forward . ${localRecursor.tuple}
|
2022-06-19 15:04:46 +03:00
|
|
|
}
|
2021-10-16 21:20:16 +03:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2022-08-07 20:58:37 +03:00
|
|
|
services.pdns-recursor = {
|
2021-10-16 21:20:16 +03:00
|
|
|
enable = true;
|
2022-08-07 20:58:37 +03:00
|
|
|
dnssecValidation = "process";
|
|
|
|
forwardZones = {
|
|
|
|
# optimize queries against our own domain
|
|
|
|
"${domain}" = interfaces.primary.addr;
|
|
|
|
};
|
|
|
|
dns = {
|
|
|
|
inherit (localRecursor) port;
|
|
|
|
address = localRecursor.ipv4;
|
|
|
|
allowFrom = [ "127.0.0.1" ];
|
|
|
|
};
|
2021-10-16 21:20:16 +03:00
|
|
|
};
|
|
|
|
}
|