flakes/modules/commons/sound.nix

15 lines
323 B
Nix
Raw Normal View History

{
# Enable sound.
# Use pipewire for sound and disable pulseaudio
sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
wireplumber.enable = true;
};
}