diff options
| -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"; }; }; } |