nixos-config/system/bluetooth.nix
2024-08-28 19:56:54 -03:00

17 lines
265 B
Nix

{ pkgs, ... }:
{
hardware.bluetooth = {
enable = true;
settings = {
General = {
DiscoverableTimeout = 0;
Discoverable = true;
AlwaysPairable = true;
};
Policy = {
AutoEnable = true;
};
};
};
}