2024-08-24 22:16:51 -04:00
|
|
|
{inputs, ...}: {
|
|
|
|
# This one brings our custom packages from the 'pkgs' directory
|
2024-09-23 14:41:31 -04:00
|
|
|
additions = final: _prev: import ./pkgs {pkgs = final;};
|
2024-08-24 22:16:51 -04:00
|
|
|
|
2024-08-29 14:15:26 -04:00
|
|
|
selfsuper = (self: super: {
|
2024-08-24 22:16:51 -04:00
|
|
|
mpv = super.mpv.override {
|
|
|
|
scripts = with self.mpvScripts; [mpris sponsorblock thumbnail];
|
|
|
|
};
|
|
|
|
});
|
2024-08-29 14:15:26 -04:00
|
|
|
|
|
|
|
finalprev = (final: prev: {
|
2024-08-24 22:16:51 -04:00
|
|
|
unstable = import inputs.nixpkgs-unstable {
|
|
|
|
system = final.system;
|
|
|
|
config.allowUnfree = true;
|
|
|
|
};
|
2024-09-23 14:41:31 -04:00
|
|
|
});
|
2024-08-24 22:16:51 -04:00
|
|
|
}
|