turn off pulseaudio to fix audio issues

This commit is contained in:
Haak Saxberg 2022-03-19 20:22:26 -07:00
parent 6272f27b29
commit cf6e0f6756

View file

@ -113,14 +113,19 @@
# Enable sound. # Enable sound.
sound.enable = true; # sound.enable turns on pulseaudio, which conflicts with pipwire. As
hardware.pulseaudio = { # Pipewire is now enabled by default (??) we should not enable the default
# sound provider.
# https://github.com/NixOS/nixpkgs/issues/163066
# sound.enable = true;
hardware.pulseaudio.enable = false;
services.pipewire = {
enable = true; enable = true;
# The full package is necessary to allow bluetooth audio devices. alsa.enable = true;
package = pkgs.pulseaudioFull; jack.enable = true;
pulse.enable = true;
}; };
# Enable touchpad support. # Enable touchpad support.
services.xserver.libinput.enable = true; services.xserver.libinput.enable = true;