nix-config/home/programs/media/obs.nix

22 lines
794 B
Nix
Raw Normal View History

2025-03-27 14:59:12 +01:00
{ 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
];
# Optional: Configure environment variables or settings if needed
# This is less common for OBS Studio, as it's mostly GUI configured.
# Example (you might not need this):
environment.variables = {
QT_QPA_PLATFORM = "wayland"; # If you're on Wayland and encounter issues
};
# Optional: Set permissions if necessary (less common)
# systemd.user.services.obs-studio.serviceConfig.SupplementaryGroups = [ "video" ];
}