1

Propagate mylib to derivations

This commit is contained in:
2023-04-26 15:00:29 +02:00
parent 2b9ef1eb10
commit f247b06d66

View File

@ -1,13 +1,14 @@
{
inputs,
nixpkgs,
mylib,
...
}: let
# Taken from https://github.com/Misterio77/nix-config/blob/main/overlay/default.nix
# By specifying this we can just add our derivation to derivations/default.nix and it will land here
additions = final: prev:
import ../derivations {
inherit inputs;
inherit inputs mylib;
pkgs = final;
};