Add v4l2loopback

This commit is contained in:
Fabian Hauser 2023-04-20 14:22:17 +02:00
parent 985eda1198
commit 348fc0745b
2 changed files with 7 additions and 0 deletions

View file

@ -6,6 +6,7 @@
./hardware.nix
./office-suite.nix
./security.nix
./video.nix
];
}

View file

@ -0,0 +1,6 @@
{ config, pkgs, lib, ... }:
{
boot.kernelModules = [ "v4l2loopback" ];
boot.extraModulePackages = [ pkgs.linuxPackages_latest.v4l2loopback ];
}