nixos-private-dots/modules/home-manager/obs/obs.nix
2024-08-09 18:23:09 +03:00

20 lines
No EOL
1.2 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ pkgs, ... }: {
programs.obs-studio = {
enable = true;
plugins = with pkgs.obs-studio-plugins; [
#wlrobs # Allows you to screen capture on wlroots based wayland compositors
obs-vkcapture # Linux Vulkan/OpenGL game capture
#obs-vaapi # VAAPI support via GStreamer. FFMPEG VAAPI implementation shows performance bottlenecks on some AMD hardware.
#obs-tuna # Выводить инфу о треке, который сейчас играет
#obs-pipewire-audio-capture # Capture using PipeWire (разве этого нет в сток обс?)
#obs-mute-filter # Mute audio of a source
#obs-multi-rtmp # Multi-site simultaneous broadcast. Имба? Рестрим локальный?
obs-composite-blur # Блюрить порнуху https://github.com/FiniteSingularity/obs-composite-blur
obs-backgroundremoval # Удалить или заблюрить фон на вебке
#input-overlay # Show keyboard, gamepad and mouse input on stream
#droidcam-obs # Use your phone as a camera directly in OBS Studio https://droidcam.app/obs/
];
};
# home.file."config?".source = ./config?; # Мб потом добавлю конфиги obs сюда
}