nixos/pipewire: also propagate LV2_PATH to standalone filter-chain

This commit is contained in:
K900 2025-10-02 09:47:37 +03:00
commit c0e0ac22d3

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;