nixos/system/services/audio.nix

12 lines
254 B
Nix
Raw Normal View History

2024-12-04 16:15:54 +01:00
{ config, pkgs, ... }: {
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# If you want to use JACK applications, uncomment this
#jack.enable = true;
};
}