nixos-config/modules/hardware/bluetooth.nix
2023-06-06 23:58:36 -04:00

13 lines
220 B
Nix

{ pkgs, ... }:
{
hardware.bluetooth = {
enable = true;
#hsphfpd.enable = true; # HSP & HFP daemon
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
};
};
}