nixos-config/extras/overlays.nix

17 lines
381 B
Nix
Raw Normal View History

{ inputs, ... }: {
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
}