15 lines
232 B
Nix
15 lines
232 B
Nix
{ unstable, ... }:
|
|
{
|
|
nixpkgs.overlays = [
|
|
(self: super: {
|
|
mpv = super.mpv.override {
|
|
scripts = with self.mpvScripts; [
|
|
mpris
|
|
sponsorblock
|
|
thumbnail
|
|
];
|
|
};
|
|
})
|
|
];
|
|
}
|