nix-dotfiles/hosts/modules/audio.nix
2026-01-15 12:54:44 -07:00

21 lines
432 B
Nix

{pkgs, ...}: {
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
lowLatency.enable = true;
# If you want to use JACK applications, uncomment this
#jack.enable = true;
};
environment.systemPackages = with pkgs; [
pulseaudio
alsa-utils
portaudio
alsa-lib
pavucontrol
headsetcontrol
];
}