From 59cbf9746c162359b9bbad334be8b43a2a1548aa Mon Sep 17 00:00:00 2001 From: Nathaniel Glen Date: Sat, 19 Sep 2020 18:00:44 -0400 Subject: [PATCH] nixos/pipewire: fix variable merging While both strings and lists are valid, lists are the more accurate type and only they can properly merge with each other. --- nixos/modules/services/desktops/pipewire.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/services/desktops/pipewire.nix b/nixos/modules/services/desktops/pipewire.nix index d51e00c00fd3..d527343966d7 100644 --- a/nixos/modules/services/desktops/pipewire.nix +++ b/nixos/modules/services/desktops/pipewire.nix @@ -107,6 +107,6 @@ in { environment.etc."alsa/conf.d/50-pipewire.conf" = mkIf cfg.alsa.enable { source = "${pkgs.pipewire}/share/alsa/alsa.conf.d/50-pipewire.conf"; }; - environment.sessionVariables.LD_LIBRARY_PATH = "/run/current-system/sw/lib/pipewire"; + environment.sessionVariables.LD_LIBRARY_PATH = [ "/run/current-system/sw/lib/pipewire" ]; }; }