flake/users/guanranwang/home-manager/applications/mpv/default.nix

30 lines
813 B
Nix
Raw Normal View History

2023-12-12 18:53:45 +00:00
{pkgs, ...}: {
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";
};
2023-11-28 05:40:22 +00:00
}