2025-04-05 13:05:59 +11:00
|
|
|
{ config, ... }: {
|
|
|
|
|
networking = {
|
|
|
|
|
useDHCP = true;
|
2025-05-19 14:14:42 +10:00
|
|
|
interfaces.enp8s0.ipv6.addresses = [
|
|
|
|
|
{
|
|
|
|
|
address = "2a01:4f9:4a:2694::11";
|
|
|
|
|
prefixLength = 64;
|
|
|
|
|
}
|
|
|
|
|
];
|
|
|
|
|
defaultGateway6 = {
|
|
|
|
|
address = "fe80::1";
|
|
|
|
|
interface = "enp8s0";
|
|
|
|
|
};
|
2025-04-05 13:05:59 +11:00
|
|
|
};
|
|
|
|
|
}
|