infrastructure/profiles/gui/home/mpv.nix
2021-04-17 22:45:56 +01:00

16 lines
319 B
Nix

{ config, lib, ... }:
{
programs.mpv = {
enable = true;
scripts = [ pkgs.mpvScripts.sponsorblock ];
config = {
profile = "gpu-hq";
gpu-context = "wayland";
vo = "gpu";
hwdec = "auto";
demuxer-max-bytes = "2000MiB";
demuxer-max-back-bytes = "250MiB";
};
};
}