nixos/services/pipewire: switch to nix-gaming low latency

This commit is contained in:
Anthony Rodriguez 2025-01-07 13:51:55 +01:00
parent 6af72ca39e
commit 82d7029260
Signed by: nezia
GPG key ID: EE3BE97C040A86CE

View file

@ -1,22 +1,18 @@
{
hardware.pulseaudio.enable = false;
# rtkit is optional but recommended
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;
};
services.pipewire.extraConfig.pipewire."92-low-latency" = {
"context.properties" = {
"default.clock.rate" = 48000;
"default.clock.allowed-rates" = [48000];
"default.clock.quantum" = 2048;
"default.clock.min-quantum" = 1024;
{inputs, ...}: {
imports = [
inputs.nix-gaming.nixosModules.pipewireLowLatency
];
services = {
pulseaudio.enable = false;
pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
lowLatency.enable = true;
};
};
# rtkit is optional but recommended
security.rtkit.enable = true;
}