nixos-config/hosts/falkenstein/modules/dns/default.nix

102 lines
3.5 KiB
Nix
Raw Normal View History

{ self, pkgs, lib, config, dns, ... }:
2024-03-09 23:22:02 +01:00
let
2024-03-10 20:51:05 +01:00
secondary = "185.181.104.96";
domain = config.networking.domain;
zonefile = with dns.lib.combinators; pkgs.writeText "rfive.de.zone.txt" (dns.lib.toString domain {
2024-04-17 22:04:08 +02:00
TTL = 3600;
2024-04-18 20:05:32 +02:00
SOA =
let
modulo = number: mod: (number - ((number / mod) * mod));
in
{
nameServer = "ns.rfive.de.";
adminEmail = "hostmaster@rfive.de";
serial = lib.strings.toInt (builtins.substring 0 8 self.sourceInfo.lastModifiedDate + toString ((modulo self.sourceInfo.lastModified 86400) / 864));
refresh = 10800;
retry = 3600;
expire = 604800;
minimum = 3600;
};
2024-04-17 22:04:08 +02:00
NS = [
"ns.inwx.de."
"ns2.inwx.de."
"ns3.inxw.eu."
];
A = [ "23.88.121.184" ];
AAAA = [ "2a01:4f8:c012:49de::1" ];
CAA = letsEncrypt "ca@rfive.de";
MX = [{ preference = 1; exchange = "mail.rfive.de."; }];
TXT = [
(spf.soft [ "mx" ])
];
2024-04-18 20:05:32 +02:00
subdomains =
let
2024-05-21 18:44:04 +02:00
getVirtualHosts = hostname: map (name: builtins.substring 0 (builtins.stringLength name - (builtins.stringLength domain + 1)) name) (builtins.attrNames self.nixosConfigurations."${hostname}".config.services.caddy.virtualHosts);
2024-04-18 20:05:32 +02:00
genCNAMEs = hostname: lib.attrsets.genAttrs (getVirtualHosts hostname) (label: { CNAME = [ "${hostname}.${domain}." ]; });
in
lib.attrsets.mergeAttrsList [
rec {
nuc = {
A = [ "141.30.227.6" ];
};
falkenstein = {
A = [ "23.88.121.184" ];
AAAA = [ "2a01:4f8:c012:49de::1" ];
};
ns = falkenstein;
mail = falkenstein;
_dmarc.TXT = [ "v=DMARC1; p=none; adkim=s; fo=1; rua=mailto:dmarc@rfive.de; ruf=mailto:dmarc@rfive.de" ];
_domainkey.subdomains.rspamd.TXT = [ "v=DKIM1; k=rsa; p=MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQDoirUMubro4nlmY6a8JMwK9QB2agAXiJzexDU/7ba6KCggONfoSTfUHlrM/XeM1GG/9oKpngApxDPP97adJuxc8/EELyo4HjTyYD8GBFZhg0AN7V8IPaJ1o5k6dGDk8ZLh41ZCnlAVWkhVSKs5pYtzkrlJIfUSzyuoe8nuFsVe3QIDAQAB" ];
2024-04-17 22:04:08 +02:00
2024-04-18 20:05:32 +02:00
}
2024-06-27 12:05:29 +02:00
(builtins.removeAttrs (genCNAMEs "nuc") [ ":2018" ])
2024-06-27 12:03:25 +02:00
(builtins.removeAttrs (genCNAMEs "falkenstein") [ "mail" ":2018" ])
2024-04-18 20:05:32 +02:00
];
2024-04-17 22:04:08 +02:00
});
2024-03-09 23:22:02 +01:00
in
{
2024-03-09 23:22:02 +01:00
services.bind = rec {
enable = true;
2024-03-09 23:22:02 +01:00
directory = "/var/lib/bind";
2024-03-11 12:40:23 +01:00
extraConfig = ''
dnssec-policy "split-keys" {
keys {
ksk lifetime unlimited algorithm ecdsap256sha256;
zsk lifetime 60d algorithm ecdsap256sha256;
};
publish-safety 1d;
retire-safety 1d;
};
'';
zones = {
"rfive.de" = {
master = true;
slaves = [
2024-03-10 20:51:05 +01:00
secondary
];
extraConfig = ''
2024-03-10 20:51:05 +01:00
also-notify {${secondary};};
2024-03-11 12:40:23 +01:00
dnssec-policy split-keys;
2024-03-09 23:22:02 +01:00
inline-signing yes;
serial-update-method date;
'';
2024-03-09 23:22:02 +01:00
file = "${directory}/rfive.de.zone.txt";
};
};
};
2024-03-09 23:22:02 +01:00
systemd.services.bind.preStart = ''
# copy the file manually to its destination since signing requires a writable directory
${pkgs.coreutils}/bin/cp ${zonefile} ${config.services.bind.directory}/rfive.de.zone.txt
2024-03-12 17:08:09 +01:00
${pkgs.coreutils}/bin/chown named:named ${config.services.bind.directory}/rfive.de.zone.txt
2024-03-09 23:22:02 +01:00
'';
2024-03-10 20:51:05 +01:00
networking.firewall.extraInputRules = ''
ip saddr ${secondary}/32 tcp dport 53 accept comment "Allow DNS AXFR access from INWX Servers"
ip saddr ${secondary}/32 udp dport 53 accept comment "Allow DNS access from INWX Servers"
'';
2024-03-11 12:40:23 +01:00
environment.systemPackages = with pkgs; [ dig.out ];
}