nixos/modules/desktop/audio.nix

16 lines
264 B
Nix
Raw Permalink Normal View History

{
lib,
config,
...
}: {
2025-12-12 04:02:55 +01:00
config = lib.mkIf config.fireproof.desktop.enable {
2025-01-31 15:13:22 +01:00
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
};
};
}