mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-04-02 19:12:11 +02:00
22 lines
472 B
Nix
22 lines
472 B
Nix
# Audio configuration for NixOS using PipeWire
|
|
{
|
|
security.rtkit.enable = true;
|
|
services.pulseaudio.enable = false;
|
|
|
|
services.pipewire = {
|
|
enable = true;
|
|
alsa.enable = true;
|
|
alsa.support32Bit = true;
|
|
pulse.enable = true;
|
|
jack.enable = true;
|
|
wireplumber = {
|
|
enable = true;
|
|
extraConfig = {
|
|
"10-disable-camera" = {
|
|
"wireplumber.profiles" = {main."monitor.libcamera" = "disabled";};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|