summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-09-17 16:10:01 -0700
committerFuwn <[email protected]>2024-09-17 16:10:01 -0700
commita51f76be9acafba228470c54f33884de861cb3aa (patch)
treeaf163cf65f4eb422bc48022ca04095f8e98ebf10
parentlock: update (diff)
downloadnixos-config-a51f76be9acafba228470c54f33884de861cb3aa.tar.xz
nixos-config-a51f76be9acafba228470c54f33884de861cb3aa.zip
bluetooth: fix aac
-rw-r--r--modules/hardware/bluetooth.nix3
1 files changed, 2 insertions, 1 deletions
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";
};
};
}