diff --git a/modules/nixos/hardware/audio/default.nix b/modules/nixos/hardware/audio/default.nix index 6f3082c..27b1bbe 100644 --- a/modules/nixos/hardware/audio/default.nix +++ b/modules/nixos/hardware/audio/default.nix @@ -23,10 +23,23 @@ in { jack.enable = true; - wireplumber.enable = true; + alsa = { + enable = true; + support32Bit = true; + }; - alsa.enable = true; - alsa.support32Bit = true; + wireplumber = { + enable = true; + extraConfig = { + "10-libcamera" = { + "wireplumber.profiles" = { + main = { + "monitor.libcamera" = "required"; + }; + }; + }; + }; + }; }; }; }