about summary refs log tree commit diff
path: root/machines/devhell
diff options
context:
space:
mode:
authordevhell <devhell@mailfresser.de>2020-09-29 11:25:26 +0100
committerdevhell <devhell@mailfresser.de>2020-09-29 11:28:43 +0100
commit8ac9ec9b1bc71f6ff0c2c30d0989024e50f138f7 (patch)
treecea29b5a063c04b5becd034eb5b958d98fa13a5a /machines/devhell
parent0ff0e3d70fb99b18dcfaf51cd3094a5497371fcc (diff)
machines/hildr: Switch back to wpa_supplicant
IWD seems to have an issue with the re-configured eduroam I frequently
use. Every other OS has no issues with the new configuration, only IWD
does. They did some background work on the CA cert, and even gave me the
public CA PEM to integrate in the configuration directly, and yet IWD
complains of `bad_certificate`. I don't have time to dig deeper, so I'm
switching to `wpa_supplicant` again until I have time to test it again
with a newer version of IWD.
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 6e966ff0..c7dcf8f0 100644
--- a/machines/devhell/hildr.nix
+++ b/machines/devhell/hildr.nix
@@ -62,11 +62,11 @@
 
   networking = {
     hostName = "hildr";
-    wireless.iwd.enable = true;
+    wireless.enable = true;
     useNetworkd = true;
     interfaces = {
       enp0s31f6.useDHCP = true;
-      wlan0.useDHCP = true;
+      wlp2s0.useDHCP = true;
     };
   };