nixos-configs/hosts/mpl/audio.nix

16 lines
254 B
Nix
Raw Normal View History

2024-12-27 16:44:03 -06:00
{...}: {
# Enable sound.
services.pipewire = {
enable = true;
pulse.enable = true;
alsa.enable = true;
alsa.support32Bit = true;
};
security.rtkit.enable = true;
hardware.framework.laptop13.audioEnhancement.enable = true;
}