From 921e7bfa1d46fd4c75f6f57ea673f3062e912875 Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Thu, 18 Jan 2024 12:52:44 +0100 Subject: [PATCH] Found this here https://github.com/the-furry-hubofeverything/hubble-systems/commit/e056cfdce1c277afe3cf9fad02ecac65f02d3551 --- overlays/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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.