summaryrefslogtreecommitdiff
path: root/modules/features/bluetooth.nix
blob: 61f6831309dceb4e0eb97350167141aeeae78c5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ self, inputs, ... }: {

  flake.nixosModules.bluetooth = { pkgs, lib, ... }: {
    hardware.bluetooth = {
      enable = true;
      powerOnBoot = true;
      settings = {
        General = {
          Experimental = true;
          FastConnectable = false;
        };

        Policy = {
          AutoEnable = true;
        };
      };
    };
  };

}