try pihole as sole dns

This commit is contained in:
2026-01-18 19:41:19 -06:00
parent 346907fce4
commit 76a072d274
2 changed files with 6 additions and 2 deletions

View File

@@ -13,9 +13,13 @@
allowedUDPPorts = [ 53 ];
};
nameservers = [
nameservers = lib.mkForce [
"127.0.0.1"
];
networkmanager = {
dns = lib.mkForce "none";
};
};
virtualisation.oci-containers.containers.pihole = {