nix-flakes/modules/nixos/features/system/bluetooth.nix
2026-07-05 13:31:18 +09:00

16 lines
251 B
Nix

{ ... }:
{
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
Experimental = true;
FastConnectable = true;
};
Policy = {
AutoEnable = true;
};
};
};
}