nix-config/nixos/common/audio.nix
2024-08-21 15:15:04 +02:00

14 lines
274 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
];
}