10 lines
180 B
Nix
10 lines
180 B
Nix
|
{lib, ...}: {
|
||
|
services.pipewire = {
|
||
|
enable = lib.mkForce true;
|
||
|
alsa.enable = true;
|
||
|
alsa.support32Bit = true;
|
||
|
pulse.enable = true;
|
||
|
audio.enable = true;
|
||
|
};
|
||
|
}
|