system/core/networking: add Cloudflare nameservers

This commit is contained in:
Anthony Rodriguez 2024-10-14 17:35:21 +02:00
parent 23b8fd005c
commit 8653724f55
Signed by: nezia
GPG key ID: EE3BE97C040A86CE
2 changed files with 4 additions and 0 deletions

View file

@ -3,6 +3,7 @@
./boot.nix ./boot.nix
./users.nix ./users.nix
./security.nix ./security.nix
./networking.nix
../nix ../nix
]; ];
i18n = { i18n = {

View file

@ -0,0 +1,3 @@
{
networking.nameservers = ["1.1.1.1" "1.0.0.1"];
}