mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 15:11:35 +00:00
waybar: Enable pulseaudio by default
The default configuration use the pulseaudio module, but it fails to load with errors since we've built the package without pulseaudio support. Most systems already have pulseaudio in the system closure anyways so the closure size change won't be noticable on end user systems.
This commit is contained in:
parent
f832fead74
commit
37e47b7f7c
|
@ -2,7 +2,7 @@
|
|||
, wayland, wlroots, gtkmm3, libsigcxx, jsoncpp, fmt, scdoc, spdlog, gtk-layer-shell
|
||||
, howard-hinnant-date, cmake
|
||||
, traySupport ? true, libdbusmenu-gtk3
|
||||
, pulseSupport ? false, libpulseaudio
|
||||
, pulseSupport ? true, libpulseaudio
|
||||
, nlSupport ? true, libnl
|
||||
, udevSupport ? true, udev
|
||||
, swaySupport ? true, sway
|
||||
|
|
|
@ -21211,9 +21211,7 @@ in
|
|||
|
||||
swaylock-effects = callPackage ../applications/window-managers/sway/lock-effects.nix { };
|
||||
|
||||
waybar = callPackage ../applications/misc/waybar {
|
||||
pulseSupport = config.pulseaudio or false;
|
||||
};
|
||||
waybar = callPackage ../applications/misc/waybar { };
|
||||
|
||||
hikari = callPackage ../applications/window-managers/hikari { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue