My Nix Configuration

[systems.zaphod] pipewire: configure for low latency

Changed files
+29
systems
x86_64-linux
zaphod
services
+29
systems/x86_64-linux/zaphod/services/pipewire.nix
···
jack.enable = true;
pulse.enable = true;
wireplumber.enable = true;
+
extraConfig = {
+
pipewire."92-low-latency" = {
+
"context.properties" = {
+
"default.clock.rate" = 48000;
+
"default.clock.quantum" = 32;
+
"default.clock.min-quantum" = 32;
+
"default.clock.max-quantum" = 32;
+
};
+
};
+
pipewire-pulse."92-low-latency" = {
+
"context.properties" = [
+
{
+
name = "libpipewire-module-protocol-pulse";
+
args = { };
+
}
+
];
+
"pulse.properties" = {
+
"pulse.min.req" = "32/48000";
+
"pulse.default.req" = "32/48000";
+
"pulse.max.req" = "32/48000";
+
"pulse.min.quantum" = "32/48000";
+
"pulse.max.quantum" = "32/48000";
+
};
+
"stream.properties" = {
+
"node.latency" = "32/48000";
+
"resample.quality" = 1;
+
};
+
};
+
};
};
security.rtkit.enable = true;
}