From 09b34cdcd9da83ce1a3968b3c01a0a68f8560344 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Sun, 6 Mar 2022 09:41:19 +0000 Subject: [PATCH] Add nameservers explicitly --- nixos/common.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/common.nix b/nixos/common.nix index ee28a0d3..6bd0994e 100644 --- a/nixos/common.nix +++ b/nixos/common.nix @@ -37,6 +37,8 @@ shell = pkgs.zsh; }; + networking.nameservers = [ "91.239.100.100" "89.233.43.71" "1.1.1.1" "8.8.8.8" ]; + networking.hosts = { "10.11.99.1" = [ "remarkable" ]; };