mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
13 lines
369 B
Nix
13 lines
369 B
Nix
{config, ...}: {
|
|
hardware.enableRedistributableFirmware = true;
|
|
boot.extraModulePackages = with config.boot.kernelPackages; [
|
|
v4l2loopback
|
|
];
|
|
programs.obs-studio = {
|
|
enable = true;
|
|
enableVirtualCamera = true;
|
|
};
|
|
boot.extraModprobeConfig = ''
|
|
options v4l2loopback devices=1 video_nr=2 card_label="OBS Virtual Camera" exclusive_caps=1
|
|
'';
|
|
}
|