mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
14 lines
283 B
Nix
14 lines
283 B
Nix
{pkgs, ...}: {
|
|
programs.obs-studio = {
|
|
enable = true;
|
|
enableVirtualCamera = true;
|
|
plugins = with pkgs.obs-studio-plugins; [
|
|
#obs-vaapi
|
|
#obs-tuna
|
|
#obs-source-clone
|
|
obs-pipewire-audio-capture
|
|
#input-overlay
|
|
obs-vkcapture
|
|
];
|
|
};
|
|
}
|