aboutsummaryrefslogtreecommitdiff
path: root/nix/modules/home/mpv.nix
blob: 6dd7f4d904b3fd9300414d2640ba2c648a20710e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ lib, config, ... }:
{
  programs.mpv = {
    enable = lib.mkDefault config.monorepo.profiles.graphics.enable;
    config = {
      profile = "gpu-hq";
      force-window = true;
      ytdl-format = "bestvideo+bestaudio";
      cache-default = 4000000;
    };
  };
}