nixos/pipewire: also propagate LV2_PATH to standalone filter-chain (#447921)

This commit is contained in:
K900
2025-10-02 06:52:42 +00:00
committed by GitHub

View File

@@ -369,6 +369,9 @@ in
systemd.user.services.pipewire.environment.LV2_PATH = mkIf (
!cfg.systemWide
) "${lv2Plugins}/lib/lv2";
systemd.user.services.filter-chain.environment.LV2_PATH = mkIf (
!cfg.systemWide
) "${lv2Plugins}/lib/lv2";
# Mask pw-pulse if it's not wanted
systemd.services.pipewire-pulse.enable = cfg.pulse.enable && cfg.systemWide;