From 4f88aed098967ce762574efd1717277dac7c6286 Mon Sep 17 00:00:00 2001 From: zimbatm Date: Thu, 30 May 2024 09:56:23 +0200 Subject: [PATCH] fixup! packages: add support for package.nix (#5) Fix partially applied function used by the modules loading --- lib/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/default.nix b/lib/default.nix index ffcb1b4..5b81030 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -84,7 +84,7 @@ let in lib.optionalAttrs (builtins.pathExists path) (fn combined); - entriesPath = entries: lib.mapAttrs (name: { path, type }: path); + entriesPath = lib.mapAttrs (name: { path, type }: path); # Prefixes all the keys of an attrset with the given prefix withPrefix =