nixos/modules/desktop/audio.nix
2025-12-12 04:02:55 +01:00

11 lines
258 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;
};
};
}