From 1a414771ba91dbfe16285ca5e79288a72f3a88a0 Mon Sep 17 00:00:00 2001 From: nyanloutre Date: Mon, 16 Dec 2024 16:55:16 +0100 Subject: [PATCH] common-gui: pipewire set clock rate --- systems/common-gui.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/systems/common-gui.nix b/systems/common-gui.nix index 6d8365d..03735e0 100644 --- a/systems/common-gui.nix +++ b/systems/common-gui.nix @@ -113,6 +113,13 @@ alsa.enable = true; alsa.support32Bit = true; pulse.enable = true; + extraConfig.pipewire = { + "10-clock-rate" = { + "context.properties" = { + "default.clock.allowed-rates" = [ 48000 ]; + }; + }; + }; }; udev.packages = with pkgs; [ ledger-udev-rules ]; pcscd.enable = true;