mirror of
https://github.com/eRgo35/nix-config.git
synced 2026-02-04 08:56:11 +01:00
24 lines
374 B
Nix
24 lines
374 B
Nix
{
|
|
services.pipewire = {
|
|
enable = true;
|
|
|
|
jack.enable = true;
|
|
pulse.enable = true;
|
|
|
|
alsa = {
|
|
enable = true;
|
|
support32Bit = true;
|
|
};
|
|
|
|
wireplumber.extraConfig = {
|
|
"10-disable-camera" = {
|
|
"wireplumber.profiles" = {
|
|
main = {
|
|
"monitor.libcamera" = "disabled";
|
|
};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|