nix-config/nixos/common/audio.nix
2024-09-22 10:56:59 +02:00

11 lines
268 B
Nix

{ pkgs, ... }: {
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
wireplumber.enable = true;
};
environment.systemPackages = with pkgs; [ pavucontrol ];
}