13 lines
207 B
Nix
13 lines
207 B
Nix
{ ... }:
|
|
{
|
|
networking = {
|
|
vlans.internal = {
|
|
id=100;
|
|
interface="eno1";
|
|
};
|
|
interfaces.internal.ipv4.addresses = [{
|
|
address = "11.0.0.2";
|
|
prefixLength = 8;
|
|
}];
|
|
};
|
|
}
|