summaryrefslogtreecommitdiff
path: root/system/bluetooth.nix
blob: b1d53ae0c54d8ebc76fa6387586e5beb983b03d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ config, pkgs, ... }:
{
  hardware.bluetooth = {
    enable = true;
    package = pkgs.bluezFull;
    powerOnBoot = true;
    hsphfpd.enable = true;
    settings = {
      General = {
        DiscoverableTimeout = 60;
      };
    };
  };
}