nix-config/configs/nixos/sound.nix

23 lines
399 B
Nix
Raw Normal View History

{
config,
pkgs,
...
}: {
# Enable sound with pipewire.
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
2024-04-04 18:44:59 -05:00
home-manager.users.${config.host.user} = {config, ...}: {
home.packages = with pkgs; [
pwvucontrol
helvum
];
};
}