23 lines
408 B
Nix
23 lines
408 B
Nix
{
|
|
networking = {
|
|
hostName = "backwards";
|
|
|
|
networkmanager.enable = false;
|
|
wireless.enable = true;
|
|
|
|
defaultGateway = "192.168.50.1";
|
|
nameservers = [ "1.1.1.1" ];
|
|
interfaces = {
|
|
wlp1s0 = {
|
|
useDHCP = false;
|
|
ipv4 = {
|
|
addresses = [{
|
|
address = "192.168.50.202";
|
|
prefixLength = 24;
|
|
}];
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|