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:
parent
2fdf6dc94c
commit
59cbf9746c
@ -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" ];
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user