devos/profiles/pipewire/default.nix

16 lines
326 B
Nix
Raw Normal View History

2021-08-31 23:21:03 +02:00
{ ... }:
2021-08-30 02:09:15 +02:00
{
2021-08-31 23:21:03 +02:00
# rtkit is optional but recommended
security.rtkit.enable = true;
services.pipewire = {
enable = true;
alsa.enable = true;
alsa.support32Bit = true;
pulse.enable = true;
# If you want to use JACK applications, uncomment this
#jack.enable = true;
2023-04-15 13:57:28 +02:00
wireplumber.enable = true;
2021-08-31 23:21:03 +02:00
};
2021-08-30 02:09:15 +02:00
}