From f42f60306801846dd3608a296bd6d37a7b304ad5 Mon Sep 17 00:00:00 2001 From: Gabriel Fontes Date: Fri, 14 Aug 2026 15:17:25 -0300 Subject: [PATCH] fix(electra): configure wireless interface explicitly Assisted-by: pi (gpt-5.6-luna) --- hosts/ubuntu/electra/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/hosts/ubuntu/electra/default.nix b/hosts/ubuntu/electra/default.nix index 5b5f184b..6cabbad6 100644 --- a/hosts/ubuntu/electra/default.nix +++ b/hosts/ubuntu/electra/default.nix @@ -7,13 +7,10 @@ _module.args.systemManagerHostName = "electra"; nixpkgs.hostPlatform = "x86_64-linux"; - - # Pinned rather than auto-detected: with an empty list the upstream module - # installs a udev rule that calls /run/current-system/systemd/bin/systemctl, - # a path that does not exist outside NixOS. networking.wireless = { # system-manager lacks the NixOS D-Bus module that installs its policy. dbusControlled = false; + # empty list requires udev rule for autodetection interfaces = ["wlp0s20f3"]; }; }