From 295d9bcc21c75e4d85585c45ef872ccdaf0ff3d1 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Mon, 4 Mar 2024 18:20:58 +0100 Subject: [PATCH] Let's just undo this ipv6 shenaniganery --- nixos/hosts/queen/configuration.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/nixos/hosts/queen/configuration.nix b/nixos/hosts/queen/configuration.nix index 50f1ce6..41f637e 100644 --- a/nixos/hosts/queen/configuration.nix +++ b/nixos/hosts/queen/configuration.nix @@ -10,7 +10,7 @@ imports = [ # If you want to use modules your own flake exports (from modules/home-manager): # outputs.homeManagerModules.example - outputs.nixosModules.contabo.wan + # outputs.nixosModules.contabo.wan inputs.home-manager.nixosModules.home-manager # Or modules exported from other flakes (such as nix-colors): # inputs.nix-colors.homeManagerModules.default @@ -96,7 +96,9 @@ networking.nat.internalInterfaces = ["ve-+"]; networking.nat.externalInterface = "ens18"; networking.enableIPv6 = lib.mkForce true; - networking.nameservers = ["1.1.1.1" "2a02:c207::1:53" "2a02:c207::2:53"]; + networking.nameservers = ["1.1.1.1"]; + + # Contabo ipv6 nameservers: "2a02:c207::1:53" "2a02:c207::2:53" networking.firewall.enable = true;