nixos/hosts/work/bluetooth.nix
2025-12-15 10:00:08 +01:00

13 lines
376 B
Nix

_: {
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
services.pipewire.wireplumber.extraConfig.bluetoothEnhancements = {
"monitor.bluez.properties" = {
"bluez5.enable-sbc-xq" = true;
"bluez5.enable-msbc" = true;
"bluez5.enable-hw-volume" = true;
"bluez5.roles" = ["hsp_hs" "hsp_ag" "hfp_hf" "hfp_ag"];
};
};
}