12 lines
230 B
Nix
12 lines
230 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
networking.defaultGateway = "192.168.0.1";
|
||
|
networking.nameservers = [ "192.168.0.69" ];
|
||
|
networking.interfaces.enp2s0.ipv4.addresses = [
|
||
|
{
|
||
|
address = "192.168.0.10";
|
||
|
prefixLength = 22;
|
||
|
}
|
||
|
];
|
||
|
}
|