diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-08 16:25:41 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-08 16:25:41 -0800 |
commit | 56feae00824bd52db0e1836e6ecba467ed91aaa3 (patch) | |
tree | 034a64d2be029fcb750766821cd6cb71bcb59f92 | |
parent | home-manager: fix initial configuration (diff) | |
download | world-56feae00824bd52db0e1836e6ecba467ed91aaa3.tar.gz |
carmel: use DHCP on the wireless interface
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"; |