hazel/networking: add ipv6 address

This commit is contained in:
LavaDesu 2025-05-19 14:14:42 +10:00
parent 19ed50cc9d
commit 945eb34e60
Signed by: cilly
GPG key ID: 6500251E087653C9

View file

@ -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";
};
};
}