this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

refactor(pkgs): simplify path concatenation

+1 -1
+1 -1
pkgs/default.nix
··· 8 8 localPackages = lib.pipe ./. [ 9 9 builtins.readDir 10 10 (lib.filterAttrs (_: v: v == "directory")) 11 - (builtins.mapAttrs (k: _: self.callPackage "${./.}/${k}" {inherit pins;})) 11 + (builtins.mapAttrs (k: _: self.callPackage ./${k} {inherit pins;})) 12 12 ]; 13 13 }) 14 14 ];