feat: installed filebot

This commit is contained in:
Leyla Becker 2025-09-25 20:04:51 -05:00
parent f9fe74cc8a
commit a8139f4265

View file

@ -1,9 +1,19 @@
{pkgs, ...}: {
{
pkgs,
lib,
...
}: {
nixpkgs.config.allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"filebot"
];
environment.systemPackages = with pkgs; [
ffsubsync
sox
yt-dlp
ffmpeg
imagemagick
filebot
];
}