From 547632f0b65009d616534031b50eeeddfda37422 Mon Sep 17 00:00:00 2001 From: EinEtwas Date: Tue, 29 Oct 2024 11:48:05 +0100 Subject: [PATCH] fix(networking): generally enable dhcp --- modules/essentials/hardware_config.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/essentials/hardware_config.nix b/modules/essentials/hardware_config.nix index 5d94a20..acee931 100644 --- a/modules/essentials/hardware_config.nix +++ b/modules/essentials/hardware_config.nix @@ -50,7 +50,7 @@ # (the default) this is the recommended approach. When using systemd-networkd it's # still possible to use this option, but it's recommended to use it in conjunction # with explicit per-interface declarations with `networking.interfaces..useDHCP`. - # networking.useDHCP = lib.mkDefault true; + networking.useDHCP = lib.mkDefault true; networking.interfaces.wlp1s0.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";