nix-config/nixos/common/audio.nix
2024-08-13 13:08:35 +02:00

13 lines
291 B
Nix

{ inputs, config, 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
];
}