nix-config/modules/bluetooth/default.nix
2026-03-04 01:07:59 +01:00

23 lines
481 B
Nix

{ inputs, ... }:
{
flake.modules.nixos.bluetooth =
{ pkgs, ... }:
{
hardware.firmware = [ pkgs.rtl8761b-firmware ];
hardware.bluetooth = {
enable = true;
powerOnBoot = true;
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
Experimental = true;
FastConnectable = true;
};
Policy = {
AutoEnable = true;
};
};
};
};
}