blob: 42f56877d0029fe468465a007ef2207f58b344d2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ lib, config, ... }:
{
programs.mpv = {
enable = true;
config = {
profile = "gpu-hq";
force-window = true;
ytdl-format = "bestvideo+bestaudio";
cache-default = 4000000;
};
};
}
|