enable jack in music mod

This commit is contained in:
Ivan Kirilov Dimitrov 2024-07-05 11:53:58 +02:00
parent 335c20346c
commit c3887fdf8b
No known key found for this signature in database
GPG Key ID: 0BDAD4B211C49294

View File

@ -67,7 +67,6 @@
enable = true; enable = true;
alsa.enable = true; alsa.enable = true;
pulse.enable = true; pulse.enable = true;
jack.enable = true;
}; };
}; };
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
@ -78,10 +77,13 @@
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
guitarix guitarix
]; ];
services.pipewire.extraConfig = { services.pipewire = {
jack."69-low-latency" = { jack.enable = true;
"jack.properties" = { extraConfig = {
"node.latency" = "64/48000"; jack."69-low-latency" = {
"jack.properties" = {
"node.latency" = "64/48000";
};
}; };
}; };
}; };