13 lines
321 B
Nix
13 lines
321 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
services.pipewire = {
|
|
enable = true;
|
|
alsa.enable = true; # ALSA compatibility
|
|
pulse.enable = true; # PulseAudio compatibility
|
|
wireplumber.enable = true; # Session manager for PipeWire
|
|
};
|
|
|
|
# Realtime privileges for pro audio (optional)
|
|
security.rtkit.enable = true;
|
|
}
|