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