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

16 lines
325 B
Nix
Raw Normal View History

{ ... }:
{
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"'';
};
};
2024-12-22 22:01:38 -05:00
home.shellAliases.opusdl = ''yt-dlp -f ba -x --audio-quality 0'';
}