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

12 lines
344 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)
2025-03-27 15:13:31 +01:00
# obs-studio-plugins.move-transition # Useful for scene transitions
2025-03-27 14:59:12 +01:00
# Add other OBS plugins you might need here
];
}