about summary refs log tree commit diff
path: root/machines
diff options
context:
space:
mode:
authordevhell <devhell@mailfresser.de>2024-01-05 15:49:46 +0000
committerdevhell <devhell@mailfresser.de>2024-01-05 15:49:46 +0000
commit19d446454c88c22e171f58eaeb4fe3e610090f51 (patch)
tree1249f75af92ea9a79fe27cd6323080e8df3bcb68 /machines
parentd690effba2f39722f0bd7c7e08f0dbd07dfa61a5 (diff)
machines/gunnr: enable wifi
Let's not talk about why.
Diffstat (limited to 'machines')
-rw-r--r--machines/devhell/gunnr.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/machines/devhell/gunnr.nix b/machines/devhell/gunnr.nix
index 71d991ce..6852bf5e 100644
--- a/machines/devhell/gunnr.nix
+++ b/machines/devhell/gunnr.nix
@@ -72,9 +72,12 @@
   networking = {
     hostName = "gunnr";
     hostId = "29e6affc";
-    wireless.enable = false;
+    wireless.iwd.enable = true;
     useNetworkd = true;
-    interfaces.enp4s0.useDHCP = true;
+    interfaces = {
+      enp4s0.useDHCP = true;
+      wlan0.useDHCP = true;
+    };
   };
 
   nix = {