From 39869f4c8b4f94ac998280fbb6e167e25af4120a Mon Sep 17 00:00:00 2001 From: clerie Date: Mon, 6 Feb 2023 14:19:04 +0100 Subject: [PATCH] hosts/hydra-2: fix typo in ip address --- hosts/hydra-2/configuration.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hosts/hydra-2/configuration.nix b/hosts/hydra-2/configuration.nix index 6860c82..b62e046 100644 --- a/hosts/hydra-2/configuration.nix +++ b/hosts/hydra-2/configuration.nix @@ -16,7 +16,7 @@ networking.useDHCP = false; networking.interfaces.ens18.ipv6.addresses = [ { address = "2001:638:904:ffc1::100"; prefixLength = 64; } ]; networking.interfaces.ens18.ipv4.addresses = [ { address = "141.24.50.112"; prefixLength = 24; } ]; - networking.defaultGateway6 = { address = "mtr 2001:638:904:ffc1::1"; interface = "ens18"; }; + networking.defaultGateway6 = { address = "2001:638:904:ffc1::1"; interface = "ens18"; }; networking.defaultGateway = { address = "141.24.50.1"; interface = "ens18"; }; networking.nameservers = [ "2001:638:904:ffcc::3" "2001:638:904:ffcc::4" "141.24.40.3" "141.24.40.4" ];