summaryrefslogtreecommitdiff
path: root/modules/hardware/bluetooth.nix
blob: ede4f77807a48611d8f7702faf501246aa032249 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ pkgs, ... }:
{
  hardware.bluetooth = {
    enable = true;
    powerOnBoot = true;
    package = pkgs.bluez5-experimental;
    disabledPlugins = [ "sap" ];

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