about summary refs log tree commit diff
path: root/hosts/carmel
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-02-08 16:25:41 -0800
committerFranck Cuny <franck@fcuny.net>2022-02-08 16:25:41 -0800
commit56feae00824bd52db0e1836e6ecba467ed91aaa3 (patch)
tree034a64d2be029fcb750766821cd6cb71bcb59f92 /hosts/carmel
parenthome-manager: fix initial configuration (diff)
downloadworld-56feae00824bd52db0e1836e6ecba467ed91aaa3.tar.gz
carmel: use DHCP on the wireless interface
Diffstat (limited to 'hosts/carmel')
-rw-r--r--hosts/carmel/configuration.nix3
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";