16 lines
350 B
Nix
16 lines
350 B
Nix
{...}: {
|
|
networking = {
|
|
interfaces = {
|
|
ens3 = {
|
|
ipv6 = {
|
|
addresses = [
|
|
{
|
|
address = "";
|
|
prefixLength = 128;
|
|
}
|
|
];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|