diff --git a/hosts/Infini-DESKTOP/default.nix b/hosts/Infini-DESKTOP/default.nix index e9157fa..6ff5752 100644 --- a/hosts/Infini-DESKTOP/default.nix +++ b/hosts/Infini-DESKTOP/default.nix @@ -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; }; } diff --git a/hosts/Infini-LAPTOP/default.nix b/hosts/Infini-LAPTOP/default.nix index 1c820bb..ceeff49 100644 --- a/hosts/Infini-LAPTOP/default.nix +++ b/hosts/Infini-LAPTOP/default.nix @@ -14,10 +14,6 @@ system.stateVersion = "21.11"; - networking = { - useDHCP = false; - - interfaces.wlan0.useDHCP = true; - }; + networking.interfaces.wlan0.useDHCP = true; }