diff --git a/modules/bluetooth.nix b/modules/bluetooth.nix index b6cbe45..89e6253 100644 --- a/modules/bluetooth.nix +++ b/modules/bluetooth.nix @@ -16,8 +16,17 @@ in Enable = "Source,Sink,Media,Socket"; Disable = "HeadSet"; MultiProfile = "multiple"; + + # Avoid bluetooth headset connection failure + Experimental = true; + FastConnectable = true; + ControllerMode = "dual"; }; }; }; + + boot.extraModprobeConfig = '' + options btusb enable_autosuspend=n + ''; }; }