From 56feae00824bd52db0e1836e6ecba467ed91aaa3 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Tue, 8 Feb 2022 16:25:41 -0800 Subject: carmel: use DHCP on the wireless interface --- hosts/carmel/configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/carmel/configuration.nix b/hosts/carmel/configuration.nix index d892bda..f04b8b9 100644 --- a/hosts/carmel/configuration.nix +++ b/hosts/carmel/configuration.nix @@ -25,7 +25,8 @@ # replicates the default behaviour. networking.useDHCP = false; networking.interfaces.enp9s0.useDHCP = true; - networking.interfaces.wlp8s0.useDHCP = false; + # TODO: if set to false, systemd hangs on boot, unclear why. + networking.interfaces.wlp8s0.useDHCP = true; # Select internationalisation properties. i18n.defaultLocale = "en_US.UTF-8"; -- cgit 1.4.1