nixos-config/system/bluetooth.nix

17 lines
265 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
hardware.bluetooth = {
enable = true;
settings = {
General = {
DiscoverableTimeout = 0;
2024-08-28 19:56:54 -03:00
Discoverable = true;
AlwaysPairable = true;
};
Policy = {
AutoEnable = true;
};
};
};
}