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