nixos/modules/desktop/audio.nix
2025-12-12 04:10:50 +01:00

15 lines
264 B
Nix

{
lib,
config,
...
}: {
config = lib.mkIf config.fireproof.desktop.enable {
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
};
}