20 lines
370 B
Nix
Raw Permalink Normal View History

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
gpu-screen-recorder-gtk
2025-01-27 15:38:40 +03:00
audacity
2025-01-08 20:49:43 +03:00
];
2024-10-14 18:43:31 +03:00
}