style: clean up networking Infini-DESKTOP/LAPTOP

This commit is contained in:
Infinidoge 2021-09-14 11:24:22 -04:00
parent ae4db0c610
commit ab530dbd24
2 changed files with 4 additions and 13 deletions

View file

@ -15,13 +15,8 @@
bud.localFlakeClone = "/home/infinidoge/Projects/DevOS";
networking = {
interfaces = {
# Enable DHCP per interface
eth0.useDHCP = true;
wlp41s0.useDHCP = true;
};
wireless.interfaces = [ "wlp41s0" ];
networking.interfaces = {
eth0.useDHCP = true;
wlp41s0.useDHCP = true;
};
}

View file

@ -14,10 +14,6 @@
system.stateVersion = "21.11";
networking = {
useDHCP = false;
interfaces.wlan0.useDHCP = true;
};
networking.interfaces.wlan0.useDHCP = true;
}