flake/common/bluetooth.nix

14 lines
404 B
Nix

{ config, lib, pkgs, modulesPath, ... }:
{
environment.etc = {
"services.wireplumber.configPackages/bluetooth.lua.d/51-bluez-config.lua".text = ''
bluez_monitor.properties = {
["bluez5.enable-sbc-xq"] = true,
["bluez5.enable-msbc"] = true,
["bluez5.enable-hw-volume"] = true,
["bluez5.headset-roles"] = "[ hsp_hs hsp_ag hfp_hf hfp_ag ]"
}
'';
};
}