nix-conf/modules/nixos/sound/default.nix
2024-04-10 23:33:35 +05:30

20 lines
390 B
Nix

{
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;
};
};
}