nix-config/nixos/common/audio.nix
2024-08-21 14:29:24 +02:00

13 lines
275 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
];
}