This repository has been archived on 2024-04-14. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-dotfiles/user/configs/mpv/default.nix

21 lines
375 B
Nix
Executable File

{pkgs, ...}: {
programs.mpv = {
enable = true;
config = {
profile = "gpu-hq";
ytdl-format = "bestvideo+bestaudio";
hwdec = "vaapi";
force-window = "yes";
ao = "pipewire";
video-sync = "display-resample";
};
scripts = with pkgs.mpvScripts; [
quality-menu
uosc
sponsorblock
thumbfast
];
};
}