nixfiles/profiles/sound/pulseaudio/pulse.nix

14 lines
202 B
Nix
Raw Normal View History

{
config,
pkgs,
...
}: {
2022-01-25 12:15:56 +00:00
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
}