Add resolved configuration for DNS

This commit is contained in:
Filippo Berto 2025-06-23 10:21:06 +02:00
parent 610c43dbca
commit c13077f287
Signed by: bertof
GPG key ID: 9DBF7E6A1D2CE9ED
2 changed files with 12 additions and 0 deletions

View file

@ -7,6 +7,7 @@
./fstrim.nix ./fstrim.nix
./fwupd.nix ./fwupd.nix
./remote-deploy.nix ./remote-deploy.nix
./resolved.nix
./tailscale.nix ./tailscale.nix
./zerotier.nix ./zerotier.nix
]; ];

View file

@ -0,0 +1,11 @@
{
services.resolved = {
enable = true;
dnssec = "true";
# dnsovertls = "true";
fallbackDns = [
"1.1.1.1"
"8.8.8.8"
];
};
}