nix-conf/modules/nixos/sound/default.nix

21 lines
390 B
Nix
Raw Normal View History

2024-04-10 18:03:35 +00:00
{
config,
lib,
...
}: {
options = {
sound.enable = lib.mkEnableOption "enable sound";
};
config = lib.mkIf config.sound.enable {
sound.enable = true;
hardware.pulseaudio.enable = false;
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
};
}