aboutsummaryrefslogtreecommitdiff
path: root/system/bluetooth.nix
blob: a4bc96066c7f334abd05bacd29b81a5f7f4e3493 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{...}: {
  hardware.bluetooth = {
    enable = true;
    powerOnBoot = true;
    settings = {
      General = {
        Experimental = true;
        FastConnectable = true;
      };
      Policy = {
        AutoEnable = true;
      };
    };
  };
}