nix/modules/pulseaudio.nix
2023-09-04 11:40:30 -05:00

10 lines
186 B
Nix

{ config, pkgs, ... }: {
hardware.pulseaudio = {
enable = true;
support32Bit = true;
package = pkgs.pulseaudioFull;
};
nixpkgs.config.pulseaudio = true;
sound.enable = true;
}