Current derivation

This commit is contained in:
Filippo Berto 2021-05-21 22:30:33 +02:00
parent 0aae761f89
commit f7226d5fa6
20 changed files with 342 additions and 79 deletions

12
modules/obs-studio.nix Normal file
View file

@ -0,0 +1,12 @@
{ pkgs, ... }:
{
programs.obs-studio = {
enable = true;
plugins = with pkgs; [
# obs-linuxbrowser
obs-v4l2sink
obs-gstreamer
obs-move-transition
];
};
}