nix-dotfiles/hosts/modules/audio.nix
alsaiduq-lab ec3d8e3a52 updates
too lazy to write a proper message but this fixes the greeter
2025-12-31 17:52:47 -07:00

20 lines
413 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
];
}