nixos-config/common/components/sound.nix

14 lines
257 B
Nix
Raw Normal View History

2024-04-22 21:47:52 +02:00
{
# Enable sound with pipewire.
sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
2024-04-23 16:19:33 +02:00
2024-04-22 21:47:52 +02:00
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
2024-04-23 16:19:33 +02:00
}