11 lines
160 B
Nix
11 lines
160 B
Nix
{pkgs, ...}: let
|
|
mpvScripts = import ./scripts pkgs;
|
|
in {
|
|
programs.mpv = {
|
|
enable = true;
|
|
|
|
scripts = with mpvScripts; [
|
|
modernx
|
|
];
|
|
};
|
|
}
|