NixFiles/systems/pogmachine/audio.nix
2023-04-09 12:56:40 +01:00

15 lines
266 B
Nix

{ config, ... }:
{
sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
jack.enable = true;
};
}