11 lines
152 B
Nix
11 lines
152 B
Nix
|
{ ... }:
|
||
|
self: super: {
|
||
|
mpv = super.mpv.override {
|
||
|
scripts = with self.mpvScripts; [
|
||
|
mpris
|
||
|
sponsorblock
|
||
|
thumbnail
|
||
|
];
|
||
|
};
|
||
|
}
|