mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-08-21 10:45:49 +02:00
bb2993b125
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
21 lines
425 B
Nix
21 lines
425 B
Nix
{
|
|
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";};
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|