diff --git a/overlays/default.nix b/overlays/default.nix index a13ea3c..8728c22 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -1,7 +1,11 @@ # This file defines overlays {inputs, ...}: { # This one brings our custom packages from the 'pkgs' directory - additions = final: _prev: import ../pkgs {pkgs = final;}; + additions = final: _prev: + import ../pkgs { + inherit (final) callPackage; + pkgs = final; + }; # This one contains whatever you want to overlay # You can change versions, add patches, set compilation flags, anything really.