Some checks are pending
CI / Build linux-lava for x86_64-linux (push) Waiting to run
16 lines
355 B
Nix
16 lines
355 B
Nix
{ config, ... }: {
|
|
networking = {
|
|
useDHCP = true;
|
|
wireless.enable = true;
|
|
|
|
interfaces.wlp1s0.useDHCP = false;
|
|
interfaces.wlp1s0.ipv4.addresses = [{
|
|
address = "192.168.1.167";
|
|
prefixLength = 24;
|
|
}];
|
|
|
|
defaultGateway = "192.168.1.1";
|
|
nameservers = [ "8.8.8.8" "8.8.4.4" ];
|
|
};
|
|
me.localAddrs = [ "100.67.2.1" ];
|
|
}
|