aboutsummaryrefslogtreecommitdiff
path: root/nix/modules/home/yt-dlp.nix
blob: 729fb8ff7362e1837016539d049e74cb7d8b6072 (plain)
1
2
3
4
5
6
7
8
9
10
11
{ lib, config, ... }:
{
  enable = lib.mkDefault config.monorepo.profiles.home.video.enable;
  settings = {
    embed-thumbnail = true;
    embed-subs = true;
    sub-langs = "all";
    downloader = "aria2c";
    downloader-args = "aria2c:'-c -x8 -s8 -k1M'";
  };
}