nixos-configs/hosts/mpl/audio.nix

16 lines
250 B
Nix
Raw Normal View History

2024-12-31 21:20:02 -06:00
_: {
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;
}