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