blob: 7c56abc0d8965acb3b96ef72e4bc4e5cf76b3d80 [file] [log] [blame]
Skyler Greybcb2cb72022-08-21 07:24:35 +01001# Modified from http://chriswarbo.net/projects/nixos/useful_hacks.html
2lib: dir:
3map (name: {
4 inherit name;
5 path = dir + "/${name}";
Skyler Greyf649adf2022-08-26 06:47:44 +01006}) (lib.attrNames (lib.filterAttrs (name: type: lib.hasSuffix ".nix" name && type == "regular") (builtins.readDir dir)))