14 lines
246 B
Nix
14 lines
246 B
Nix
{ ... }:
|
|
{
|
|
networking = {
|
|
interfaces."eno1".ipv4.addresses = [{
|
|
address = "11.2.0.1";
|
|
prefixLength = 8;
|
|
}];
|
|
defaultGateway = {
|
|
address = "11.1.0.1";
|
|
interface = "eno1";
|
|
};
|
|
hostId = "8745e22e";
|
|
};
|
|
}
|