12 lines
227 B
Nix
12 lines
227 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
networking.defaultGateway = "192.168.11.1";
|
||
|
networking.nameservers = [ "1.1.1.1" ];
|
||
|
networking.interfaces.ens18.ipv4.addresses = [
|
||
|
{
|
||
|
address = "192.168.11.107";
|
||
|
prefixLength = 24;
|
||
|
}
|
||
|
];
|
||
|
}
|