mirror of
https://github.com/harryssecret/homelab-nix.git
synced 2025-01-19 05:39:34 +01:00
26 lines
613 B
Nix
26 lines
613 B
Nix
|
{config, ...}:
|
||
|
{
|
||
|
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;
|
||
|
wireplumber.extraConfig."10-bluez" = {
|
||
|
"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"
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|