Changed: OBS

This commit is contained in:
DerGrumpf 2025-04-01 17:15:42 +02:00
parent e7163f46b1
commit 44cbe2a778

View File

@ -1,11 +1,14 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
# Install OBS Studio and any desired plugins programs.obs-studio = {
home.packages = with pkgs; [ enable = true;
obs-studio enableVirtualCamera = true;
obs-studio-plugins.obs-vkcapture # For better Wayland capture (if you're on Wayland) plugins = with pkgs.obs-studio-plugins; [
# obs-studio-plugins.move-transition # Useful for scene transitions wlrobs
# Add other OBS plugins you might need here obs-vkcapture
obs-backgroundremoval
obs-pipewire-audio-capture
]; ];
};
} }