From 294916003a88ad9b9768731c16c940010b525373 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Sun, 3 Mar 2024 14:34:00 +0100 Subject: [PATCH] Add ipv4 nameserver --- nixos/hosts/queen/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/hosts/queen/configuration.nix b/nixos/hosts/queen/configuration.nix index 5e93a27..ce58117 100644 --- a/nixos/hosts/queen/configuration.nix +++ b/nixos/hosts/queen/configuration.nix @@ -118,7 +118,7 @@ networking.nat.internalInterfaces = ["ve-+"]; networking.nat.externalInterface = "ens18"; networking.enableIPv6 = lib.mkForce true; - networking.nameservers = ["2a02:c207::1:53" "2a02:c207::2:53"]; + networking.nameservers = ["1.1.1.1" "2a02:c207::1:53" "2a02:c207::2:53"]; networking.firewall.enable = true;