audio: use pulseaudioFull package to not build from source

This commit is contained in:
Sandro - 2023-07-03 21:37:57 +02:00
parent 00000015ae
commit 5ac61fadc8
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 6 additions and 1 deletions

View File

@ -23,7 +23,12 @@ in
pavucontrol
]);
hardware.pulseaudio.zeroconf.discovery.enable = true;
hardware.pulseaudio = {
# enabling zeroconf discovery or publishing turns on zeroconfSupport for the configured pulseaudio package
# pulseaudioFull has that enabled plus it has a cache hit on cache.nixos.org
package = pkgs.pulseaudioFull;
zeroconf.discovery.enable = true;
};
# required for paprefs to be able to save
programs.dconf.enable = lib.mkIf config.services.xserver.enable true;