Overlays
Coming soon:
- Explaining how
self: super: { /* Code here */ }
works - Using
super.callPackage
- Using a
default.nix
file as an overlay for a folder - Probably worth mentioning the difference between
super.callPackage blah {};
andimport blah;
and howcallPackage
works. (Probably including an example ofimport blah with pkgs; {blah1, blah2, blah3, blah...}
and whysuper.callPackage blah {}
is so much better).