NixOS-Config/overlays/mpv/default.nix

15 lines
232 B
Nix

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