nixos/pulseaudio: don't put 32bit libs in systemPackages

Fixes the useless collisions in the system path.
The 64bit and 32bit variants have the same files, hence
it's pointless to put the 32bit pulseaudio in systemPackages.
This commit is contained in:
Luca Bruno 2015-03-18 14:06:09 +00:00
parent cb45b7ec3e
commit b94b08488f

View file

@ -124,9 +124,7 @@ in {
}
(mkIf cfg.enable {
environment.systemPackages = [
cfg.package
] ++ lib.optionals enable32BitAlsaPlugins [ pkgs_i686.pulseaudio ];
environment.systemPackages = [ cfg.package ];
environment.etc = singleton {
target = "asound.conf";