1
0
Fork 0

Apps: replace Droidcam OBS combo with native app

This commit is contained in:
Aires 2024-07-15 17:04:39 -04:00
parent 0b4422b1f5
commit aeb626c264

View file

@ -1,4 +1,9 @@
{ config, lib, ... }:
{
config,
lib,
pkgs,
...
}:
let
cfg = config.aux.system.apps.recording;
@ -14,12 +19,13 @@ with lib;
services.flatpak.packages = [
"com.obsproject.Studio"
"com.obsproject.Studio.Plugin.DroidCam"
"org.kde.kdenlive"
"org.tenacityaudio.Tenacity"
"io.github.seadve.Kooha"
];
environment.systemPackages = with pkgs; [ droidcam ];
# Add a virtual camera to use with Droidcam
boot = {
extraModulePackages = with config.boot.kernelPackages; [ v4l2loopback.out ];