13 lines
234 B
Nix
13 lines
234 B
Nix
{ ... }:
|
|
{
|
|
networking = {
|
|
interfaces."wlp1s0".ipv4.addresses = [{
|
|
address = "192.168.2.200";
|
|
prefixLength = 24;
|
|
}];
|
|
defaultGateway = {
|
|
address = "192.168.2.1";
|
|
interface = "wlp1s0";
|
|
};
|
|
};
|
|
}
|