nixos-config/user/mpv.nix

22 lines
516 B
Nix
Raw Normal View History

2022-10-18 22:41:40 -03:00
_: {
config = {
programs.mpv = {
enable = true;
config = {
# ytdl-format='best';
ytdl_path = "yt-dlp";
ytdl-format = "bestvideo[height<=1080][vcodec!=vp9]+bestaudio/best";
ytdl-raw-options =
"cookies=~/.cache/cookies-youtube-com.txt,mark-watched=";
osd-fractions = true;
save-position-on-quit = true;
keep-open = true;
cache = true;
cache-pause-initial = true;
cache-pause-wait = 10;
};
};
};
}