Pipewire: enable jack & rtkit

This commit is contained in:
Username404-59 2026-06-25 23:55:53 +02:00
parent dec3e9b760
commit 60e6e884c3
Signed by: Username404-59
GPG Key ID: F3A1878B14F5F0D7
2 changed files with 10 additions and 0 deletions

View File

@ -89,6 +89,7 @@
./firefox-config.nix ./firefox-config.nix
./mpv-config.nix ./mpv-config.nix
./ollama-config.nix ./ollama-config.nix
./pipewire-config.nix
]; ];
qt = { qt = {

View File

@ -0,0 +1,9 @@
{ ... }:
{
security.rtkit.enable = true; # Improves audio latency
services.pipewire = {
# For LMMS:
jack.enable = true;
};
}