move things around

This commit is contained in:
LavaDesu 2021-05-26 21:05:59 +07:00
parent 63b9b81ebe
commit c9f0f903a3
Signed by: cilly
GPG key ID: 6500251E087653C9
26 changed files with 9 additions and 8 deletions

View file

@ -1,18 +0,0 @@
{ config, ... }: {
networking.wireless.enable = true;
networking.useDHCP = false;
networking.interfaces.eno1.useDHCP = false;
networking.interfaces.wlp3s0.useDHCP = false;
networking.interfaces.eno1.ipv4.addresses = [{
address = "10.0.0.2";
prefixLength = 24;
}];
networking.interfaces.wlp3s0.ipv4.addresses = [{
address = "192.168.100.13";
prefixLength = 24;
}];
networking.defaultGateway = "192.168.100.1";
networking.nameservers = ["192.168.100.11"];
}