13 lines
221 B
Nix
13 lines
221 B
Nix
{ ... }:
|
|
{
|
|
networking = {
|
|
interfaces."eno1".ipv4.addresses = [{
|
|
address = "10.2.0.2";
|
|
prefixLength = 8;
|
|
}];
|
|
defaultGateway = {
|
|
address = "10.1.0.1";
|
|
interface = "eno1";
|
|
};
|
|
};
|
|
}
|