pipewire: Add pulseaudio

This is necessary so we can load the module-switch-on-connect module,
which makes switching between USB audio devices automatic among other
things.
This commit is contained in:
Donovan Glover 2023-06-03 10:52:58 -04:00
parent 5a7816aec8
commit 73e5e99ccd
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -1,3 +1,5 @@
{ pkgs, ... }:
{ {
services.pipewire = { services.pipewire = {
enable = true; enable = true;
@ -12,5 +14,9 @@
lowLatency.enable = true; lowLatency.enable = true;
}; };
environment.systemPackages = with pkgs; [
pulseaudio
];
security.rtkit.enable = true; security.rtkit.enable = true;
} }