summaryrefslogtreecommitdiff
path: root/system/bluetooth.nix
blob: 30faf1b4077543f5f8e2cf48ec5390b4618252a4 (plain)
1
2
3
4
5
6
7
8
{ config, pkgs, ... }:
{
  hardware.bluetooth = {
    enable = true;
    package = pkgs.bluezFull;
    powerOnBoot = false;
  };
}