2023-11-22 15:33:16 -05:00
|
|
|
{nix-gaming, ...}: {
|
2023-12-31 15:44:53 -05:00
|
|
|
imports = [nix-gaming.nixosModules.pipewireLowLatency];
|
2023-10-17 19:10:54 -04:00
|
|
|
|
2023-10-15 17:22:22 -04:00
|
|
|
hardware.pulseaudio.enable = false;
|
|
|
|
|
|
|
|
services.pipewire = {
|
|
|
|
enable = true;
|
|
|
|
alsa.enable = true;
|
|
|
|
jack.enable = true;
|
|
|
|
pulse.enable = true;
|
2024-02-27 17:58:23 -05:00
|
|
|
# FIXME: https://github.com/fufexan/nix-gaming/issues/161
|
|
|
|
lowLatency.enable = false;
|
2023-10-15 17:22:22 -04:00
|
|
|
};
|
|
|
|
}
|