are you sure that is the dns you are using? check in network mananger and see what it set at. I just checked mine and i am using my pfsense router which is where my dhcp is located. When i bring that dns hello up, it says the same thing but isnt what i am using.
I dont think there are the kinds of buttons you are looking for there.
But if you want to disable systemd-resolved and/or the stub variant and/or configure the DNS then you will probably need to use the regular approach through config files.
I would probably first suggest something like this to disable the cache and set the the router as the DNS;
Add this (replace 192.168.1.100 with your Pi-hole IP):
[Resolve]
DNS=192.168.1.100
#FallbackDNS=8.8.8.8 1.1.1.1 # Comment out or remove Cloudflare
Domains=~.
Restart resolved
sudo systemctl restart systemd-resolved
Verify with resolvectl statusâit should show your Pi-hole as the DNS server
Hello Appâs DNS section limits options to predefined providers (like Cloudflare, Google, etc.) and doesnât have a direct ânoneâ or custom entry, which is why youâre seeing pings to Cloudflare (1.1.1.1) via Pi-hole.
You donât need to uninstall anything drastic like the Hello App itself (itâs just a frontend for common configs and harmless to keep). Instead, configure your DNS at the NetworkManager or systemd-resolved level to use your Pi-hole/Unbound setup. This will bypass the Hello Appâs suggestions entirely
If you didnt include the parts I provided then you are still going to double the cache .. you will have a mini caching resolver running on your machine after/on-top of what the pihole already does.
Also, depending on what other packages/files are around the âdns.confâ may not set the options reliably (get clobbered by something else).
ls -la /etc/systemd/resolved.conf.d/
Anyways .. this is also all still assuming you want to keep systemd-resolved which might be a little odd itself if you are using unbound (as unbound is itself a caching recursive dns resolver).
Iâll take yours then but the FallbackDNS Parameter is missing there, i added that to my Config to because i saw some Quad DNS as Fallback and i wanted to get rid of them too.