Fix nextcloud talk audio issues

This commit is contained in:
Hendrik Sokolowski 2022-04-14 13:47:29 +02:00
parent a88d2d40ed
commit 197be5729c

View file

@ -73,6 +73,17 @@ in {
alsa.enable = true; alsa.enable = true;
alsa.support32Bit = true; alsa.support32Bit = true;
pulse.enable = true; pulse.enable = true;
config.pipewire = {
context.default.clock = {
allowed-rates = [44100 48000 88200 96000];
rate = 44100;
quantum = 2048;
min-quantum = 1024;
max-quantum = 4096;
};
};
config.pipewire-pulse = builtins.fromJSON (builtins.readFile ./pipewire-pulse.conf.json);
}; };
# Make pulseaudio listen on port 4713 for mopidy, extending the default # Make pulseaudio listen on port 4713 for mopidy, extending the default