nixos-config/home-manager/modules/obs.nix
gwg313 58f06d6729
lots of stuff
Signed-off-by: gwg313 <gwg313@pm.me>
2025-06-30 18:13:14 -04:00

18 lines
401 B
Nix

# A cat clone with syntax highlighting and Git integration.
{ pkgs, ... }:
{
programs.obs-studio = {
enable = true;
# additional packages to add to gjs's runtime
plugins = with pkgs.obs-studio-plugins; [
wlrobs
obs-backgroundremoval
obs-pipewire-audio-capture
obs-vaapi # optional AMD hardware acceleration
obs-gstreamer
obs-vkcapture
];
};
}