From 930b3e96b4f330d1380011e7363c9373b2f5ca64 Mon Sep 17 00:00:00 2001 From: Pacman99 Date: Tue, 6 Apr 2021 17:02:30 -0700 Subject: [PATCH] drop toString in pathsIn - trying to fix CI issues --- lib/lists.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lists.nix b/lib/lists.nix index b6530f1..c5823d3 100644 --- a/lib/lists.nix +++ b/lib/lists.nix @@ -2,7 +2,7 @@ { pathsIn = dir: let - fullPath = name: "${toString dir}/${name}"; + fullPath = name: "${dir}/${name}"; in map fullPath (lib.attrNames (dev.safeReadDir dir)); }