Unverified Commit 41b88f48 authored by K900's avatar K900 Committed by GitHub
Browse files

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

parents c8f5e832 c0e0ac22
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -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;