summaryrefslogtreecommitdiff
path: root/modules/hardware/bluetooth.nix
blob: 8400a727bb36a733275ae4a12b78223290af2313 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ pkgs, ... }:
{
  boot.kernelParams = [ "btusb" ];

  hardware.bluetooth = {
    enable = true;
    powerOnBoot = true;
    package = pkgs.bluez5-experimental;
    disabledPlugins = [ "sap" ];

    settings = {
      General = {
        JustWorksRepairing = "always";
        MultiProfile = "multiple";
        Experimental = true;
      };
    };
  };
}