OBS Studio

From NixOS Wiki
Revision as of 01:01, 11 February 2022 by imported>Wackbyte (add a brief description and a link to their website)

OBS Studio is free and open source software for video recording and live streaming, licensed under the GNU GPLv2 license.

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