Compare commits

...

No commits in common. "13ccb8c9c029775897a89484a6a29a88bfea0233" and "283d1a080317f153000e418feaf04a3d859e804c" have entirely different histories.

5
overlay.nix Normal file
View file

@ -0,0 +1,5 @@
self: super: with super.lib;
mapAttrs' (name: _: rec {
value = super.callPackages ("./pkgs/${name}") { };
name = removeSuffix ".nix" name;
}) (builtins.readDir ./pkgs)