OBS Studio

From NixOS Wiki
Revision as of 03:04, 10 February 2022 by imported>Wackbyte (init with virtual camera setup example)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

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
  ];
}