summaryrefslogtreecommitdiff
path: root/nix_archive/nix/bluetooth.nix
blob: 18b9a42bb73905324eba50a4db7d3b91b4795c8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ ... }: {
  hardware.bluetooth = {
    enable = true;
    powerOnBoot = true;
    settings = {
      General = {
        ControllerMode = "dual";
      };
      LE = {
        MinConnectionInterval = 7;
        MaxConnectionInterval = 9;
        ConnectionLatency = 0;
      };
    };
  };
}