mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
16 lines
319 B
Nix
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";
|
|
};
|
|
};
|
|
}
|