From 6774a31d1ce5a1d1782d0bac929727c7df52889c Mon Sep 17 00:00:00 2001 From: Atridad Lahiji Date: Tue, 16 Sep 2025 15:15:46 -0600 Subject: [PATCH] 1758057346 --- modules/audio.nix | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/modules/audio.nix b/modules/audio.nix index 80cc673..738fa31 100644 --- a/modules/audio.nix +++ b/modules/audio.nix @@ -10,4 +10,13 @@ alsa.support32Bit = true; pulse.enable = true; }; + + services.pipewire.extraConfig.pipewire."92-low-latency" = { + "context.properties" = { + "default.clock.rate" = 48000; + "default.clock.quantum" = 256; + "default.clock.min-quantum" = 256; + "default.clock.max-quantum" = 1024; + }; + }; }