diff --git a/overlays/default.nix b/overlays/default.nix index 8fd97c39..b687a51d 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -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; };