2025-03-27 14:59:12 +01:00
|
|
|
{ pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
2025-04-01 17:15:42 +02:00
|
|
|
programs.obs-studio = {
|
|
|
|
enable = true;
|
2025-04-01 17:19:51 +02:00
|
|
|
#enableVirtualCamera = true;
|
2025-04-01 17:15:42 +02:00
|
|
|
plugins = with pkgs.obs-studio-plugins; [
|
|
|
|
wlrobs
|
|
|
|
obs-vkcapture
|
|
|
|
obs-backgroundremoval
|
|
|
|
obs-pipewire-audio-capture
|
|
|
|
];
|
|
|
|
};
|
2025-03-27 14:59:12 +01:00
|
|
|
}
|