nixos-config/modules/hardware/bluetooth.nix

18 lines
237 B
Nix
Raw Normal View History

2022-09-17 16:50:50 +02:00
#
# Bluetooth
#
{ pkgs, ... }:
{
hardware.bluetooth = {
enable = true;
2022-12-17 20:19:51 +01:00
hsphfpd.enable = false; # HSP & HFP daemon
2022-09-17 16:50:50 +02:00
settings = {
General = {
Enable = "Source,Sink,Media,Socket";
};
};
};
}