15 lines
280 B
Nix
15 lines
280 B
Nix
|
{ pkgs, lib, ... }:
|
||
|
|
||
|
{
|
||
|
services.pipewire = {
|
||
|
enable = true;
|
||
|
alsa = {
|
||
|
enable = true;
|
||
|
support32Bit = pkgs.targetPlatform.system == "x86_64-linux";
|
||
|
};
|
||
|
pulse.enable = true;
|
||
|
jack.enable = true;
|
||
|
};
|
||
|
hardware.pulseaudio.enable = lib.mkForce false;
|
||
|
}
|