From d538f82b3129432ac49c3621e09dfd5680ced2e4 Mon Sep 17 00:00:00 2001 From: sballert Date: Wed, 17 Mar 2021 16:37:54 +0100 Subject: [PATCH] Workaround for wpa_supplicant startup error See https://github.com/NixOS/nixpkgs/issues/101963 --- configuration.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 22d05ac..8968b4b 100644 --- a/configuration.nix +++ b/configuration.nix @@ -43,7 +43,10 @@ in { ################################################################################ networking = { hostName = "nixos"; - wireless.enable = true; + wireless = { + enable = true; + interfaces = [ "wlp59s0" ]; + }; dhcpcd = { enable = true; runHook = ''