Files
dotfiles/home/apps/mpv.nix
2026-02-18 18:03:06 +05:30

28 lines
668 B
Nix

{pkgs, ...}: {
programs.mpv = {
enable = pkgs.stdenv.isLinux;
config = {
vo = "gpu-next";
gpu-api = "vulkan";
loop-file = "inf";
loop-playlist = "inf";
};
profiles = {
# hdr = {
# vo = "gpu-next";
# gpu-api = "vulkan";
# hdr-compute-peak = "yes";
# hdr-peak-detect = "yes";
# target-peak = 400;
# target-prim = "bt.2020";
# target-trc = "pq";
# inverse-tone-mapping = "yes";
# tone-mapping = "spline";
# tone-mapping-mode = "auto";
# target-colorspace-hint = "auto";
# gamut-mapping = "desaturate";
# };
};
};
}