From 7b10da933de5948230491254fbb721c53f948b5b Mon Sep 17 00:00:00 2001 From: "Alexander \"PapaTutuWawa" Date: Mon, 18 Oct 2021 16:09:42 +0200 Subject: [PATCH] host: Use iwd as a wifi supplicant --- modules/host.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/host.nix b/modules/host.nix index 1b58365..9a1592e 100644 --- a/modules/host.nix +++ b/modules/host.nix @@ -139,6 +139,7 @@ let "steam" "steam-original" "steam-runtime" "discord" ]; + nixpkgs.config.allowUnfree = true; services = { connman = { @@ -146,8 +147,7 @@ let extraFlags = [ "--nodnsproxy" ]; wifi = lib.mkIf wireless { - # TODO: Maybe try out iwd - backend = "wpa_supplicant"; + backend = "iwd"; }; }; @@ -158,6 +158,7 @@ let pipewire = { enable = true; pulse.enable = true; + jack.enable = true; alsa.enable = true; alsa.support32Bit = true; };