host: Use iwd as a wifi supplicant

This commit is contained in:
PapaTutuWawa 2021-10-18 16:09:42 +02:00
parent 70601b7d55
commit 7b10da933d

View File

@ -139,6 +139,7 @@ let
"steam" "steam-original" "steam-runtime" "steam" "steam-original" "steam-runtime"
"discord" "discord"
]; ];
nixpkgs.config.allowUnfree = true;
services = { services = {
connman = { connman = {
@ -146,8 +147,7 @@ let
extraFlags = [ "--nodnsproxy" ]; extraFlags = [ "--nodnsproxy" ];
wifi = lib.mkIf wireless { wifi = lib.mkIf wireless {
# TODO: Maybe try out iwd backend = "iwd";
backend = "wpa_supplicant";
}; };
}; };
@ -158,6 +158,7 @@ let
pipewire = { pipewire = {
enable = true; enable = true;
pulse.enable = true; pulse.enable = true;
jack.enable = true;
alsa.enable = true; alsa.enable = true;
alsa.support32Bit = true; alsa.support32Bit = true;
}; };