feat: add mpv module with custom scripts

This commit is contained in:
matt1432 2023-12-16 16:03:36 -05:00
commit ae75463df5
4 changed files with 49 additions and 1 deletions
home/mpv/scripts

View file

@ -0,0 +1,8 @@
{pkgs, ...}: let
buildLua =
pkgs.callPackage
"${pkgs.path}/pkgs/applications/video/mpv/scripts/buildLua.nix" {};
in
pkgs.recurseIntoAttrs {
modernx = pkgs.callPackage ./modernx.nix {inherit buildLua;};
}