aboutsummaryrefslogtreecommitdiff
path: root/home/programs/yt-dlp.nix
blob: ae48c18b2646a110a93b957db6ddeb487c87d8e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ ... }:
{
  programs.yt-dlp = {
    enable = true;

    settings = {
      mtime = false;
      merge-output-format = "mkv";
      restrict-filenames = true;
      embed-thumbnail = true;
      embed-metadata = true;
      embed-chapters = true;
      sponsorblock-mark = "sponsor";
      output = "~/Movies/%(uploader)s/%(upload_date>%Y-%m-%d)s-%(title)s-%(id)s.%(ext)s";
    };
  };
}