9 lines
215 B
Nix
9 lines
215 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;
|
|
}
|