From dba46ad8c4f42371fb7eb070ce0484c95b5b1290 Mon Sep 17 00:00:00 2001 From: Gabriella Bere Date: Tue, 3 Sep 2024 22:01:01 +0100 Subject: [PATCH] add pipewire-jack to pipewire options, hopefully fixing ardour as pipewire-pulse does not seem to work --- hosts/gabbielaptop/configuration.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hosts/gabbielaptop/configuration.nix b/hosts/gabbielaptop/configuration.nix index 1b44bd3..3098f7f 100644 --- a/hosts/gabbielaptop/configuration.nix +++ b/hosts/gabbielaptop/configuration.nix @@ -90,16 +90,16 @@ enable = true; alsa.enable = true; alsa.support32Bit = true; - pulse.enable = true; + pulse.enable = true; # ardour does not seem to be a fan of this + jack.enable = true; wireplumber = { enable = true; extraConfig.enableMIDI = { - "node.features.audio.control-port" = true; # This is needed for ardour to recognise MIDI keyboards + "wireplumber.settings" = { + node.features.audio.control-port = true; # This is needed for ardour to recognise my USB MIDI keyboard + }; }; # This is JSON }; - # If you want to use JACK applications, uncomment this - #jack.enable = true; - # use the example session manager (no others are packaged yet so this is enabled by default, # no need to redefine it in your config for now) #media-session.enable = true;