linuxware/programs/obs-studio.nix

18 lines
343 B
Nix
Raw Normal View History

2023-11-05 04:53:31 -03:00
{ pkgs, ... }:
{
programs.obs-studio =
2023-11-05 04:53:31 -03:00
{
enable = true;
plugins = with pkgs.obs-studio-plugins; [
input-overlay
# Currently broken due to onnxruntime failing to build.
# obs-backgroundremoval
2023-11-05 04:53:31 -03:00
obs-pipewire-audio-capture
obs-vaapi
obs-vkcapture
wlrobs
];
};
}