From 335c20346c438259100a0b0b7182a192fe369ad4 Mon Sep 17 00:00:00 2001 From: Ivan Kirilov Dimitrov Date: Fri, 5 Jul 2024 11:52:45 +0200 Subject: [PATCH] music pipewire jack low latency --- nixos/modules/default.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/nixos/modules/default.nix b/nixos/modules/default.nix index 5f97f38..446fa4c 100644 --- a/nixos/modules/default.nix +++ b/nixos/modules/default.nix @@ -78,6 +78,13 @@ environment.systemPackages = with pkgs; [ guitarix ]; + services.pipewire.extraConfig = { + jack."69-low-latency" = { + "jack.properties" = { + "node.latency" = "64/48000"; + }; + }; + }; musnix = { enable = true; rtcqs.enable = true;