NixOS-Config/extras/overlays.nix

18 lines
445 B
Nix
Raw Normal View History

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
selfsuper = (self: super: {
2024-08-24 22:16:51 -04:00
mpv = super.mpv.override {
scripts = with self.mpvScripts; [mpris sponsorblock thumbnail];
};
});
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
}