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/mpv.nix

14 lines
294 B
Nix

{ config, pkgs, ... }:
{
programs.mpv = {
enable = true;
config = {
profile = "gpu-hq";
ytdl-format = "bestvideo+bestaudio";
hwdec = "vaapi-copy";
gpu-context = "wayland";
force-window = "yes";
};
};
}