NixOS-Config/overlays/mpv/default.nix

10 lines
145 B
Nix
Raw Normal View History

2024-10-15 02:40:43 -04:00
(self: super: {
2024-10-09 03:36:08 -04:00
mpv = super.mpv.override {
scripts = with self.mpvScripts; [
mpris
sponsorblock
thumbnail
];
};
2024-10-15 02:40:43 -04:00
})