Since the removal of the sound.enable
from NixOS (unstable
) configuration settings, I’ve had trouble with my HP Omen 16. When switching from a Logitech bluetooth headset to built-in speakers, I am getting no sound at all. Here’s my sound config:
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
wireplumber.enable = true;
};
I am also using easyeffects
but I hope this is not a factor. The only way to fix it is to remove ~/.local/state/wireplumber
and restart my GNOME session.
Any hint?