From bb8a72b8e0e25f6a0ceb3574942a54cffe006cb9 Mon Sep 17 00:00:00 2001 From: LateNightIceCream Date: Thu, 25 Apr 2024 10:51:27 +0200 Subject: [PATCH] change to the additions overlay function call --- standard/overlays/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/standard/overlays/default.nix b/standard/overlays/default.nix index a13ea3cf..7bfcb4ce 100644 --- a/standard/overlays/default.nix +++ b/standard/overlays/default.nix @@ -1,7 +1,7 @@ # 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 final.pkgs; # This one contains whatever you want to overlay # You can change versions, add patches, set compilation flags, anything really.