From c3887fdf8b6cd35b19f27f8f4fdb91b4b62cfb73 Mon Sep 17 00:00:00 2001 From: Ivan Kirilov Dimitrov Date: Fri, 5 Jul 2024 11:53:58 +0200 Subject: [PATCH] enable jack in music mod --- nixos/modules/default.nix | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/nixos/modules/default.nix b/nixos/modules/default.nix index 446fa4c..1075d07 100644 --- a/nixos/modules/default.nix +++ b/nixos/modules/default.nix @@ -67,7 +67,6 @@ enable = true; alsa.enable = true; pulse.enable = true; - jack.enable = true; }; }; environment.systemPackages = with pkgs; [ @@ -78,10 +77,13 @@ environment.systemPackages = with pkgs; [ guitarix ]; - services.pipewire.extraConfig = { - jack."69-low-latency" = { - "jack.properties" = { - "node.latency" = "64/48000"; + services.pipewire = { + jack.enable = true; + extraConfig = { + jack."69-low-latency" = { + "jack.properties" = { + "node.latency" = "64/48000"; + }; }; }; };