nixfiles/profiles/sound/pulseaudio/pulse-recv-rtp.nix

8 lines
145 B
Nix
Raw Normal View History

2022-01-25 12:15:56 +00:00
{ ... }: {
hardware.pulseaudio = {
extraConfig = ''
2022-01-26 23:05:24 +00:00
load-module module-rtp-recv latency_msec=5000 sap_address=0.0.0.0
2022-01-25 12:15:56 +00:00
'';
};
}