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