home: configure mpv

This commit is contained in:
Guanran Wang 2023-12-13 02:53:45 +08:00
parent dab79d2379
commit 0bbf04fabe
Signed by: nyancat
SSH key fingerprint: SHA256:8oWGKciPALWut/6WA27oFKofX+6Wtc0gQnsefXLQx/8

View file

@ -1,3 +1,29 @@
_: { {pkgs, ...}: {
programs.mpv.enable = true; programs.mpv = {
enable = true;
config = {
hwdec = "auto-safe";
vo = "gpu-next";
profile = "gpu-hq";
osc = "no";
};
scripts = with pkgs.mpvScripts; [
mpris
thumbfast
];
};
# for scripts that is not in nixpkgs
xdg.configFile = let
modernX = pkgs.fetchFromGitHub {
owner = "zydezu";
repo = "modernX";
rev = "10f74d29f86cbfb307181ecfa564402f993b073d";
hash = "sha256-ozbOsVGdllB+E4UtERynhe5Eng3nKnL/IIEtT4yVdOI=";
};
in {
"mpv/scripts/modernx.lua".source = "${modernX}/modernx.lua";
"mpv/fonts/Material-Design-Iconic-Font.ttf".source = "${modernX}/Material-Design-Iconic-Font.ttf";
"mpv/fonts/Material-Design-Iconic-Round.ttf".source = "${modernX}/Material-Design-Iconic-Round.ttf";
};
} }