nixos/hosts/work/bluetooth.nix

16 lines
411 B
Nix
Raw Normal View History

2025-03-07 07:59:42 +01:00
_: {
hardware.bluetooth.enable = true;
hardware.bluetooth.powerOnBoot = true;
2025-03-07 10:12:35 +01:00
2025-03-07 07:59:42 +01:00
services.blueman.enable = true;
services.pipewire.wireplumber.extraConfig.bluetoothEnhancements = {
2025-03-07 10:12:35 +01:00
"monitor.bluez.properties" = {
2025-03-07 07:59:42 +01:00
"bluez5.enable-sbc-xq" = true;
"bluez5.enable-msbc" = true;
"bluez5.enable-hw-volume" = true;
2025-03-07 10:12:35 +01:00
"bluez5.roles" = ["hsp_hs" "hsp_ag" "hfp_hf" "hfp_ag"];
};
2025-03-07 07:59:42 +01:00
};
2025-03-07 10:12:35 +01:00
}