Removed gale overlay port 8000 now always open for temporary services. updated mpv config Added mount.yazi plugin
29 lines
543 B
Nix
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
|
|
];
|
|
};
|
|
}
|