networking: fix in-flight wifi (dns)

Fixes issue on in-flight wifi where I cannot access the login page.

Turns out, `insertNameservers` goes before the delta wifi nameserver,
this prevents `wifi.delta.com` from being resolved. So I need to use
`appendNameservers` instead.
This commit is contained in:
2026-03-21 12:10:09 -04:00
parent 1c3a29dc5b
commit 543930921f

View File

@@ -9,7 +9,7 @@
networkmanager = {
enable = true;
insertNameservers = [
appendNameservers = [
"1.1.1.1"
"9.9.9.9"
];