OBS Studio

From NixOS Wiki
Revision as of 00:57, 11 February 2022 by imported>Wackbyte (Wackbyte moved page OBS to OBS Studio: the software is actually called OBS Studio (and the package is too), oops)

Using the Virtual Camera

The virtual camera requires the v4l2loopback kernel module to be installed, like so:

{ config, ... }:
{
  boot.extraModulePackages = with config.boot.kernelPackages; [
    v4l2loopback
  ];
}