post(nixos): fallback should also malware-blocking

This commit is contained in:
Ming Di Leom 2022-07-07 03:12:31 +00:00
parent 0cb811a549
commit 326c2bfe63
No known key found for this signature in database
GPG Key ID: 32D3E28E96A695E8
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ Then I point systemd's resolved to stubby. I do configure it to fallback to unen
networking.nameservers = [ "::1" "127.0.0.1" ];
services.resolved = {
enable = true;
fallbackDns = [ "2606:4700:4700::1111" "2606:4700:4700::1001" "1.1.1.1" "1.0.0.1" ];
fallbackDns = [ "2606:4700:4700::1112" "2606:4700:4700::1002" "1.1.1.2" "1.0.0.2" ];
};
```