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