nixos-config/modules/home/programs/terminal/yt-dlp/default.nix

16 lines
325 B
Nix

{ ... }:
{
programs.yt-dlp = {
enable = true;
settings = {
add-metadata = true;
embed-thumbnail = true;
convert-thumbnails = "jpg";
audio-format = "opus";
output = ''"%(artist)s - %(title)s.%(ext)s"'';
};
};
home.shellAliases.opusdl = ''yt-dlp -f ba -x --audio-quality 0'';
}