diff options
| author | Fuwn <[email protected]> | 2024-09-17 16:10:01 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-09-17 16:10:01 -0700 |
| commit | a51f76be9acafba228470c54f33884de861cb3aa (patch) | |
| tree | af163cf65f4eb422bc48022ca04095f8e98ebf10 /modules | |
| parent | lock: update (diff) | |
| download | nixos-config-a51f76be9acafba228470c54f33884de861cb3aa.tar.xz nixos-config-a51f76be9acafba228470c54f33884de861cb3aa.zip | |
bluetooth: fix aac
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/hardware/bluetooth.nix | 3 |
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"; }; }; } |