nixos-configs/modules/audio.nix
matt1432 ccd5350370
All checks were successful
Discord / discord commits (push) Has been skipped
chore: update flake.lock
2024-02-27 17:58:23 -05:00

15 lines
335 B
Nix

{nix-gaming, ...}: {
imports = [nix-gaming.nixosModules.pipewireLowLatency];
hardware.pulseaudio.enable = false;
services.pipewire = {
enable = true;
alsa.enable = true;
jack.enable = true;
pulse.enable = true;
# FIXME: https://github.com/fufexan/nix-gaming/issues/161
lowLatency.enable = false;
};
}