dotfiles/modules/nixos/hardware/audio/default.nix

27 lines
608 B
Nix
Raw Normal View History

2024-10-06 15:25:05 -05:00
{
security.rtkit.enable = true;
services = {
pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
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"
];
};
};
2024-10-06 15:25:05 -05:00
};
2025-01-08 01:05:45 -06:00
pulseaudio.enable = false;
2024-10-06 15:25:05 -05:00
};
}