config/profiles/desktop/sound/pulseaudio.nix

16 lines
416 B
Nix
Raw Normal View History

2023-03-11 00:30:24 +01:00
{ pkgs, ... }:
{
sound.enable = true; # alsa, needed?
#sound.mediaKeys.enable = true # only enable if headless
hardware.pulseaudio.enable = true;
hardware.pulseaudio.package = pkgs.pulseaudioFull; # optional
#hardware.pulseaudio.support32Bit = true;
nixpkgs.config.pulseaudio = true;
2023-03-11 15:59:56 +01:00
environment.systemPackages = with pkgs; [
pulseeffects-legacy
];
2023-03-11 00:30:24 +01:00
security.rtkit.enable = true; # optional
}