about summary refs log tree commit diff
path: root/machines/devhell
diff options
context:
space:
mode:
authordevhell <devhell@mailfresser.de>2020-01-02 15:46:52 +0000
committerdevhell <devhell@mailfresser.de>2020-01-02 15:46:52 +0000
commitb6c8dac6db199ef576ba41b904f0e7d6beae2c48 (patch)
treee24a9b7aa108235b9a533c1d36567dfeb62b62e7 /machines/devhell
parent5390d1edf27563075d183866ed60f0e373e5c89c (diff)
machines/hildr: Switch from wpa_supplicant to iwd
Now that I've finally found a few minutes to mess with iwd's
configuration successfully I can switch completely. Only annoyance is
iwd's insistence on switching the interface name to 'wlan0'.
Diffstat (limited to 'machines/devhell')
-rw-r--r--machines/devhell/hildr.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/machines/devhell/hildr.nix b/machines/devhell/hildr.nix
index 47959d5e..b4367971 100644
--- a/machines/devhell/hildr.nix
+++ b/machines/devhell/hildr.nix
@@ -59,11 +59,11 @@
 
   networking = {
     hostName = "hildr";
-    wireless.enable = true;
+    wireless.iwd.enable = true;
     useNetworkd = true;
     interfaces = {
       enp0s31f6.useDHCP = true;
-      wlp2s0.useDHCP = true;
+      wlan0.useDHCP = true;
     };
   };