Update de rotina

This commit is contained in:
Guilherme Hermando
2025-09-04 16:47:08 -03:00
committed by GitHub
parent 55cd5125d7
commit a9d54e8134
4 changed files with 23 additions and 2 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;
}