This repository has no description
0

Configure Feed

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

1{ 2 lib, 3 currentSystem, 4 hostpkgs ? { }, 5}: 6 7let 8 pkgs = 9 { 10 inherit lib currentSystem; 11 config = { 12 debug = false; 13 }; 14 } 15 // lib.packagesFromDirectoryRecursive { 16 callPackage = lib.callPackageWith (pkgs // hostpkgs); 17 directory = ./packages; 18 }; 19in 20pkgs