nixfiles/profiles/sound/pulseaudio/pulse.nix

11 lines
197 B
Nix
Raw Normal View History

2022-01-25 12:15:56 +00:00
{ config, pkgs, ... }: {
sound.enable = true;
nixpkgs.config.pulseaudio = true;
2022-01-29 23:51:11 +00:00
hardware.pulseaudio = {
enable = true;
package = pkgs.pulseaudioFull;
2022-01-30 15:34:50 +00:00
support32Bit = true;
2022-01-29 23:51:11 +00:00
};
2022-01-25 12:15:56 +00:00
}