2025-01-08 20:49:43 +03:00
|
|
|
{ pkgs, lib, ... }:
|
2024-10-14 18:43:31 +03:00
|
|
|
|
|
|
|
{
|
|
|
|
programs.obs-studio = {
|
|
|
|
enable = true;
|
|
|
|
plugins = with pkgs.obs-studio-plugins; [
|
|
|
|
wlrobs
|
|
|
|
obs-backgroundremoval
|
|
|
|
obs-pipewire-audio-capture
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
2025-01-08 20:49:43 +03:00
|
|
|
home.packages = with pkgs; [
|
2024-10-14 18:43:31 +03:00
|
|
|
|
2025-01-08 20:49:43 +03:00
|
|
|
jellyfin-ffmpeg
|
|
|
|
libsForQt5.kdenlive
|
|
|
|
gpu-screen-recorder-gtk
|
2024-10-14 18:43:31 +03:00
|
|
|
|
2025-01-08 20:49:43 +03:00
|
|
|
];
|
2024-10-14 18:43:31 +03:00
|
|
|
}
|