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