turn off pulseaudio to fix audio issues
This commit is contained in:
parent
6272f27b29
commit
cf6e0f6756
1 changed files with 10 additions and 5 deletions
|
|
@ -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;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue