lib: simplify mkPathable
Alan Pearce alan@alanpearce.eu
Tue, 21 May 2024 07:16:52 +0200
1 files changed, 5 insertions(+), 8 deletions(-)
jump to
M lib/default.nix → lib/default.nix
@@ -6,14 +6,11 @@ in rec { importPathStore = p: "${append ../. "/${p}"}"; - mkPathable = s: - if - s.type == "local" - then - toString (lib.path.append ../. s.outPath) - else - toString s.outPath - ; + mkPathable = s: toString ( + if s.type == "local" + then (lib.path.append ../. s.outPath) + else s.outPath + ); mkNixPath = sources: lib.attrsets.mapAttrsToList (k: v: "${k}=${mkPathable v}")