18 lines
237 B
Nix
18 lines
237 B
Nix
#
|
|
# Bluetooth
|
|
#
|
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
hardware.bluetooth = {
|
|
enable = true;
|
|
hsphfpd.enable = false; # HSP & HFP daemon
|
|
settings = {
|
|
General = {
|
|
Enable = "Source,Sink,Media,Socket";
|
|
};
|
|
};
|
|
};
|
|
}
|