mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 16:23:57 +01:00
56475023ed
This was actually causing audio crackling issues when playback rapidly changed in wine.
19 lines
228 B
Nix
19 lines
228 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
services.pipewire = {
|
|
enable = true;
|
|
|
|
alsa = {
|
|
enable = true;
|
|
support32Bit = true;
|
|
};
|
|
|
|
pulse.enable = true;
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
pulseaudio
|
|
];
|
|
}
|