From a51f76be9acafba228470c54f33884de861cb3aa Mon Sep 17 00:00:00 2001 From: Fuwn Date: Tue, 17 Sep 2024 16:10:01 -0700 Subject: bluetooth: fix aac --- modules/hardware/bluetooth.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/hardware/bluetooth.nix b/modules/hardware/bluetooth.nix index 8a6afaa..9737504 100644 --- a/modules/hardware/bluetooth.nix +++ b/modules/hardware/bluetooth.nix @@ -1,18 +1,19 @@ { pkgs, ... }: { boot.kernelParams = [ "btusb" ]; + services.blueman.enable = true; hardware.bluetooth = { enable = true; powerOnBoot = true; package = pkgs.bluez5-experimental; disabledPlugins = [ "sap" ]; + # hsphfpd.enable = true; settings.General = { JustWorksRepairing = "always"; MultiProfile = "multiple"; Experimental = true; - Enable = "Source,Sink,Media,Socket"; }; }; } -- cgit v1.2.3