From 80878905b3833e9255beac90004b5a77f87bba6d Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Sun, 3 Mar 2024 00:21:14 +0100 Subject: [PATCH] Debugging the ipv6 thing more --- modules/nixos/contabo/wan/default.nix | 4 ++-- nixos/hosts/queen/configuration.nix | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/nixos/contabo/wan/default.nix b/modules/nixos/contabo/wan/default.nix index 785ea9b..9da2971 100644 --- a/modules/nixos/contabo/wan/default.nix +++ b/modules/nixos/contabo/wan/default.nix @@ -28,10 +28,10 @@ in { address = cfg.ipAddresses; routes = [ {routeConfig.Gateway = "fe80::1";} - {routeConfig = {Destination = "172.31.1.1";};} + {routeConfig = {Destination = "62.171.160.1";};} { routeConfig = { - Gateway = "172.31.1.1"; + Gateway = "62.171.160.1"; GatewayOnLink = true; }; } diff --git a/nixos/hosts/queen/configuration.nix b/nixos/hosts/queen/configuration.nix index 61266b3..f26c1ff 100644 --- a/nixos/hosts/queen/configuration.nix +++ b/nixos/hosts/queen/configuration.nix @@ -111,6 +111,7 @@ enable = true; }; + systemd.services.systemd-networkd.serviceConfig.Environment = "SYSTEMD_LOG_LEVEL=debug"; # Enable networking networking.networkmanager.enable = true; networking.nat.enable = true;