SOLUTION: - NixOS with AdGuard DNS
services.dnsmasq.enable = true;
services.dnsmasq.settings = {
no-resolv = true;
bogus-priv = true;
strict-order = true;
server = [“94.140.14.49” “94.140.14.59” ];
add-cpe-id = “My_ID”;
};
You just cannot include the port, or it will not resolve. To be more clear, ping resolved, but my web browser in Flatpak did not. Drop the port and the above works nicely (as I am posted from there now).
#NixOS #Nix #Linux #AdGuard #AdGuardDNS
RE: https://mk.absturztau.be/notes/a6rafutx0c1w00bo
services.dnsmasq.enable = true;
services.dnsmasq.settings = {
no-resolv = true;
bogus-priv = true;
strict-order = true;
server = [“94.140.14.49” “94.140.14.59” ];
add-cpe-id = “My_ID”;
};
You just cannot include the port, or it will not resolve. To be more clear, ping resolved, but my web browser in Flatpak did not. Drop the port and the above works nicely (as I am posted from there now).
#NixOS #Nix #Linux #AdGuard #AdGuardDNS
RE: https://mk.absturztau.be/notes/a6rafutx0c1w00bo
Linux Is Best (@Linux)
NixOS and AdGuard DNS I am told to use the following in dnsmasq.conf: no-resolv bogus-priv strict-order server=94.140.14.49 server=94.140.14.59 port=My_Port add-cpe-id=My_ID I am just trying to figure out how I would actually get NixOS to do this. Because I am pretty sure editing dnsmasq.conf may not actually work (unless I am wrong?). #NixOS #Nix #Linux #AdGuardDNS