nixos-config/modules/hardware/bluetooth.nix
2023-11-06 02:01:49 -05:00

11 lines
217 B
Nix

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