Files
dotfiles/home/apps/mpv.nix
servius fb7c219cf2
Some checks failed
Flake checker / Build Nix targets (push) Has been cancelled
feat: Disable mpv on macos
2026-01-28 13:49:31 +05:30

28 lines
640 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";
};
};
};
}