mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-04 01:42:53 +03:00
chromium: Enable pulseaudio by default.
If no config.pulseaudio is explicitely set to false, build with pulse support, because even if there is no pulse server available, chromium will fall back to using ALSA. And we definitely want to avoid that users have to build chromium for themselves just for the sake of having pulse support. Thanks to @devhell for actually helping me discovering this (I for myself do always rebuild Chromium, so I won't notice those kind of things). Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
ec786d59d8
commit
a01ab33e03
@ -7181,7 +7181,7 @@ let
|
||||
chromium = lowPrio (callPackage ../applications/networking/browsers/chromium {
|
||||
channel = "stable";
|
||||
gconf = gnome.GConf;
|
||||
pulseSupport = config.pulseaudio or false;
|
||||
pulseSupport = config.pulseaudio or true;
|
||||
});
|
||||
|
||||
chromiumBeta = lowPrio (chromium.override { channel = "beta"; });
|
||||
|
Loading…
Reference in New Issue
Block a user