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
Raw Normal View History

2024-01-30 17:51:06 +00:00
{pkgs, ...}: {
2022-10-03 23:21:40 +01:00
programs.mpv = {
enable = true;
config = {
profile = "gpu-hq";
ytdl-format = "bestvideo+bestaudio";
2022-11-30 13:25:50 +00:00
hwdec = "vaapi";
2022-10-03 23:21:40 +01:00
force-window = "yes";
2022-11-30 13:25:50 +00:00
ao = "pipewire";
2024-01-30 17:51:06 +00:00
video-sync = "display-resample";
2022-08-07 16:37:11 +01:00
};
2024-01-30 17:51:06 +00:00
scripts = with pkgs.mpvScripts; [
quality-menu
uosc
sponsorblock
thumbfast
];
2022-10-03 23:21:40 +01:00
};
2022-08-07 16:37:11 +01:00
}