diff options
Diffstat (limited to '.trash/3 resources/nix/overlays.md')
-rw-r--r-- | .trash/3 resources/nix/overlays.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.trash/3 resources/nix/overlays.md b/.trash/3 resources/nix/overlays.md new file mode 100644 index 0000000..70dad85 --- /dev/null +++ b/.trash/3 resources/nix/overlays.md @@ -0,0 +1,8 @@ +Functions that accept two args (conventionally: final, prev) and return a set of [[package]]s. + +The `prev` arguments holds the set of packages of the "parent" overlay while the `final` argument holds the end result of **all** overlays applied. This means that overlays depend on each other. It is unclear how we can tell on which overlay an overlay depends. + +We can use it to override existing packages or add new packages. + +--- +https://nixos.wiki/wiki/Overlays |