17 lines
317 B
Nix
17 lines
317 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
programs.obs-studio = {
|
|
enable = true;
|
|
plugins = with pkgs.obs-studio-plugins; [
|
|
input-overlay
|
|
# Currently broken due to onnxruntime failing to build.
|
|
# obs-backgroundremoval
|
|
obs-pipewire-audio-capture
|
|
obs-vaapi
|
|
obs-vkcapture
|
|
wlrobs
|
|
];
|
|
};
|
|
}
|