2023-11-24 09:57:15 +01:00
|
|
|
{ pkgs, ... }:
|
|
|
|
{
|
|
|
|
services.pipewire = {
|
|
|
|
enable = true;
|
2025-01-22 13:36:08 +01:00
|
|
|
raopOpenFirewall = true;
|
2023-11-24 09:57:15 +01:00
|
|
|
alsa.enable = true;
|
|
|
|
alsa.support32Bit = true;
|
|
|
|
pulse.enable = true;
|
2025-01-22 13:36:08 +01:00
|
|
|
extraConfig.pipewire = {
|
|
|
|
"10-airplay" = {
|
|
|
|
"context.modules" = [
|
|
|
|
{
|
|
|
|
name = "libpipewire-module-raop-discover";
|
|
|
|
|
|
|
|
# increase the buffer size if you get dropouts/glitches
|
|
|
|
# args = {
|
|
|
|
# "raop.latency.ms" = 500;
|
|
|
|
# };
|
|
|
|
}
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
2023-11-24 09:57:15 +01:00
|
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
2023-12-01 15:07:47 +01:00
|
|
|
helvum
|
2025-01-26 15:03:45 +01:00
|
|
|
easyeffects
|
2023-12-29 19:47:57 +01:00
|
|
|
pavucontrol
|
2023-11-24 09:57:15 +01:00
|
|
|
];
|
|
|
|
}
|