move public/private wifi logic into its own module

This commit is contained in:
2025-05-26 15:34:15 -04:00
parent 6b8abf9972
commit 83befed09a
3 changed files with 25 additions and 24 deletions

View File

@ -0,0 +1,19 @@
{ ... }:
{
networking.nameservers = [
"9.9.9.9"
"1.1.1.1"
"192.168.76.1"
];
services.resolved = {
enable = true;
dnssec = "false";
domains = [ "~." ];
fallbackDns = [
"1.1.1.1#one.one.one.one"
"1.0.0.1#one.one.one.one"
];
dnsovertls = "true";
};
}