From 945eb34e6042778692f885954d8058dc6da6ac8b Mon Sep 17 00:00:00 2001 From: LavaDesu Date: Mon, 19 May 2025 14:14:42 +1000 Subject: [PATCH] hazel/networking: add ipv6 address --- hosts/hazel/networking.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/hosts/hazel/networking.nix b/hosts/hazel/networking.nix index 1dd932a..60064b5 100644 --- a/hosts/hazel/networking.nix +++ b/hosts/hazel/networking.nix @@ -1,5 +1,15 @@ { config, ... }: { networking = { useDHCP = true; + interfaces.enp8s0.ipv6.addresses = [ + { + address = "2a01:4f9:4a:2694::11"; + prefixLength = 64; + } + ]; + defaultGateway6 = { + address = "fe80::1"; + interface = "enp8s0"; + }; }; }