Upd rotina

This commit is contained in:
DarkGui
2025-09-23 19:24:55 -03:00
parent a66d8f334c
commit 9511b0d709
29 changed files with 43 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
{ config, lib, inputs, pkgs, ... }: {
programs.obs-studio = {
enable = true;
# optional Nvidia hardware acceleration
package = (
pkgs.obs-studio.override {
cudaSupport = true;
}
);
plugins = with pkgs.obs-studio-plugins; [
wlrobs
obs-backgroundremoval
obs-pipewire-audio-capture
obs-gstreamer
obs-vkcapture
];
};
programs.obs-studio.enableVirtualCamera = true;
}