infrastructure/profiles/gui/home/mpv.nix
2021-03-28 21:03:48 +01:00

13 lines
189 B
Nix

{ config, lib, ... }:
{
programs.mpv = {
enable = true;
config = {
profile = "gpu-hq";
gpu-context = "wayland";
vo = "gpu";
hwdec = "auto";
};
};
}