blob: 760b7cf3007358ef34128923621af23d99c63fb0 [file] [log] [blame]
Skyler Greybcb2cb72022-08-21 07:24:35 +01001# Modified from http://chriswarbo.net/projects/nixos/useful_hacks.html
2lib: dir:
Skyler Grey252927a2022-10-18 22:18:15 +01003map
4 (name: {
5 inherit name;
6 path = dir + "/${name}";
7 })
8 (lib.attrNames (lib.filterAttrs (name: type: lib.hasSuffix ".nix" name && type == "regular") (builtins.readDir dir)))