summaryrefslogtreecommitdiffstats
path: root/nixos
diff options
context:
space:
mode:
authorNathaniel Glen <njag2202@gmail.com>2020-10-23 16:09:18 -0400
committerNathaniel Glen <njag2202@gmail.com>2020-10-23 16:35:48 -0400
commit57510bf522c90c63fec9b086a42b661ffdaf43c7 (patch)
tree75c1f869acff7b98b9be82ee3ada9212e42d24cb /nixos
parent9397d535bddf4bd296f5d155edf7461d6c379e87 (diff)
pipewire: cleanup path testing
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/desktops/pipewire.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/desktops/pipewire.nix b/nixos/modules/services/desktops/pipewire.nix
index ed1b15380ffe..5179cbaf6bc2 100644
--- a/nixos/modules/services/desktops/pipewire.nix
+++ b/nixos/modules/services/desktops/pipewire.nix
@@ -100,6 +100,6 @@ in {
source = "${pkgs.pipewire}/share/alsa/alsa.conf.d/50-pipewire.conf";
};
environment.sessionVariables.LD_LIBRARY_PATH =
- lib.optional (cfg.alsa.enable || cfg.jack.enable || cfg.pulse.enable) "/run/current-system/sw/lib/pipewire";
+ lib.optional (cfg.jack.enable || cfg.pulse.enable) "/run/current-system/sw/lib/pipewire";
};
}