NiksOS/home/programs/mpv.nix
Jurn Wubben 8f6905474b Updated flake;
Removed gale overlay

port 8000 now always open for temporary services.

updated mpv config

Added mount.yazi plugin
2025-05-01 15:05:15 +02:00

29 lines
543 B
Nix

{
pkgs,
osConfig,
...
}: {
programs.mpv = {
enable = osConfig.niksos.desktop;
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
];
};
}