From 5e6a75fcc139243a873065f1646b610d094ab35f Mon Sep 17 00:00:00 2001 From: imxyy_soope_ Date: Thu, 23 Jul 2026 21:53:11 +0800 Subject: [PATCH] bluetooth: avoid headset connection failure --- modules/bluetooth.nix | 9 +++++++++ 1 file changed, 9 insertions(+) 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 + ''; }; }