this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

:sparkles: Host config obs studio virtual camera

+9
+9
hosts/desktop/default.nix
··· 202 202 ]; 203 203 204 204 virtualisation.docker.enable = true; 205 + 206 + # https://nixos.wiki/wiki/OBS_Studio 207 + boot.extraModulePackages = with config.boot.kernelPackages; [ 208 + v4l2loopback 209 + ]; 210 + boot.extraModprobeConfig = '' 211 + options v4l2loopback devices=1 video_nr=1 card_label="OBS Cam" exclusive_caps=1 212 + ''; 213 + security.polkit.enable = true; 205 214 }