nixos/home/mpv/home.nix

15 lines
240 B
Nix
Raw Normal View History

{ pkgs
, lib
, config
, ... }: with lib; mkIf config.passthrough.gui {
programs.mpv = {
enable = true;
config = {
hwdec = "auto-safe";
vo = "gpu";
profile = "gpu-hq";
gpu-context = "wayland";
};
};
}