Fix DNS, fmt

This commit is contained in:
Henry Hiles 2025-03-10 12:36:28 -04:00
parent 7d751836de
commit 388091073a
2 changed files with 12 additions and 11 deletions

View file

@ -250,9 +250,9 @@
monospace-font-name = "FiraCode Nerd Font 11";
};
# "org/gnome/Ptyxis".default-profile-uuid = "quadradical";
#
# "org/gnome/Ptyxis/Profiles/quadradical".palette = "nord";
# "org/gnome/Ptyxis".default-profile-uuid = "quadradical";
#
# "org/gnome/Ptyxis/Profiles/quadradical".palette = "nord";
});
}
];

View file

@ -1,11 +1,12 @@
{
services.dnsproxy = {
enable = true;
settings.upstream = ["https://base.dns.mullvad.net/dns-query"];
settings = rec {
upstream = ["https://base.dns.mullvad.net/dns-query"];
fallback = ["1.1.1.1"];
bootstrap = fallback;
};
};
environment.etc."resolv.conf".text = ''
nameserver 0.0.0.0
nameserver 1.1.1.1 # Backup Nameserver
'';
environment.etc."resolv.conf".text = "nameserver 0.0.0.0";
}