NixFiles/utils/nixFilesInWithName.nix

9 lines
268 B
Nix
Raw Normal View History

2023-12-19 19:08:55 +00:00
# Modified from http://chriswarbo.net/projects/nixos/useful_hacks.html
lib: dir:
map
(name: {
inherit name;
path = dir + "/${name}";
})
(lib.attrNames (lib.filterAttrs (name: type: lib.hasSuffix ".nix" name && type == "regular") (builtins.readDir dir)))