NiksOS/home/programs/mpv.nix
2025-05-24 00:03:47 +02:00

29 lines
524 B
Nix

{
pkgs,
osConfig,
...
}: {
programs.mpv = {
enable = true;
config = {
vo = "gpu";
profile = "gpu-hq";
hwdec = "auto-safe";
gpu-context = "wayland";
ytdl-format = "bestvideo[height<=?1440]+bestaudio/best";
volume-max = 200;
fs = true;
save-position-on-quit = true;
webui-port = 9090;
};
scripts = with pkgs.mpvScripts; [
uosc
youtube-upnext
thumbfast
sponsorblock
mpv-cheatsheet
simple-mpv-webui
];
};
}