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.
This commit is contained in:
Nathaniel Glen 2020-09-19 18:00:44 -04:00
parent 2fdf6dc94c
commit 59cbf9746c

View file

@ -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" ];
};
}