2024-05-21 22:40:26 +02:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
# rtkit is optional but recommended
|
|
|
|
security.rtkit.enable = true;
|
|
|
|
services.pipewire = {
|
|
|
|
enable = true;
|
|
|
|
alsa.enable = true;
|
|
|
|
alsa.support32Bit = true;
|
|
|
|
pulse.enable = true;
|
|
|
|
# If you want to use JACK applications, uncomment this
|
|
|
|
#jack.enable = true;
|
|
|
|
|
2024-06-11 07:36:07 +02:00
|
|
|
wireplumber.configPackages = [
|
|
|
|
(pkgs.writeTextDir "share/wireplumber/bluetooth.lua.d/51-bluez-config.lua" ''
|
|
|
|
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 ]"
|
|
|
|
}
|
|
|
|
'')
|
|
|
|
];
|
2024-05-21 22:40:26 +02:00
|
|
|
};
|
2024-06-11 07:36:07 +02:00
|
|
|
environment.systemPackages = [ pkgs.easyeffects ];
|
2024-05-21 22:40:26 +02:00
|
|
|
}
|