nix-config/nixos/common/audio.nix
2024-08-10 19:16:09 +02:00

12 lines
260 B
Nix

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