diff options
Diffstat (limited to '')
-rw-r--r-- | hosts/carmel/configuration.nix | 3 |
1 files changed, 2 insertions, 1 deletions
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"; |