11 lines
210 B
Nix
11 lines
210 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
services.pipewire = {
|
|
enable = true;
|
|
pulse.enable = true;
|
|
};
|
|
|
|
# This allows pipewire to get realtime priority, which (hopefully) gets rid of stutters
|
|
security.rtkit.enable = true;
|
|
}
|