[BROKEN DYNDNS] feat(containers): switch to hetzner for primary domain

This commit is contained in:
steveej 2023-08-08 17:53:01 +02:00
parent 09374a71fd
commit 9988e3e969
7 changed files with 132 additions and 35 deletions

View file

@ -1,6 +1,20 @@
{...}: {
networking.useHostResolvConf = false;
services.resolved = {enable = true;};
imports = [../../modules/ddclient-ovh.nix];
networking.nameservers = ["1.1.1.1#one.one.one.one" "1.0.0.1#one.one.one.one"];
services.resolved = {
enable = true;
dnssec = "true";
domains = ["~."];
fallbackDns = ["1.1.1.1#one.one.one.one" "1.0.0.1#one.one.one.one"];
extraConfig = ''
DNSOverTLS=yes
'';
};
imports = [
../../modules/ddclient-ovh.nix
../../modules/ddclient-hetzner.nix
];
}