This commit is contained in:
Kat Inskip 2023-11-12 08:07:11 -08:00
parent f1c21d1125
commit ab079b9766
Signed by: kat
GPG key ID: 465E64DECEA8CF0F

View file

@ -1,15 +1,19 @@
_: {
{lib, ...}: let
inherit (lib.modules) mkForce;
in {
networking = {
networkmanager.dns = mkForce "none";
nameservers = [
"194.242.2.2" # For now, Mullvad DNS.
"9.9.9.9"
];
};
services.resolved = {
enable = true;
fallbackDns = [
"1.1.1.1"
"9.9.9.9"
];
dnssec = "false";
domains = ["~."];
dnssec = "true";
extraConfig = ''
DNSOverTLS=yes
'';