forked from extern/nix-config
a7087e2904
This works, and without putting wine directly in $PATH, which is kinda cool.
18 lines
235 B
Nix
18 lines
235 B
Nix
{
|
|
services.pipewire = {
|
|
enable = true;
|
|
|
|
alsa = {
|
|
enable = true;
|
|
support32Bit = true;
|
|
};
|
|
|
|
pulse.enable = true;
|
|
jack.enable = true;
|
|
|
|
lowLatency.enable = true;
|
|
};
|
|
|
|
security.rtkit.enable = true;
|
|
}
|