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