17 lines
450 B
Nix
17 lines
450 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
|
|
};
|
|
# Optional: Add realtime privileges for pro audio (if needed)
|
|
security.rtkit.enable = true;
|
|
# Optional: Enable Bluetooth audio support
|
|
services.bluez = {
|
|
enable = true;
|
|
audioSupport = true;
|
|
};
|
|
}
|