This commit is contained in:
Hadi
2024-08-19 00:38:27 +02:00
parent 31ac58592e
commit 849eb5dd11
14 changed files with 78 additions and 82 deletions

20
hosts/modules/audio.nix Normal file
View File

@@ -0,0 +1,20 @@
{
security.rtkit.enable = true;
hardware.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"; };
};
};
};
};
}