blob: 6375d5be58de1648960934cef1e84c43b1aae500 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
lib: prev: with lib; {
modulesIn = dir: pipe dir [
builtins.readDir
(mapAttrsToList (name: type:
if type == "regular" && hasSuffix ".nix" name && name != "default.nix" then
[ { name = removeSuffix ".nix" name; value = dir + "/${name}"; } ]
else if type == "directory" && pathExists (dir + "/${name}/default.nix") then
[ { inherit name; value = dir + "/${name}"; } ]
else
[]
))
concatLists
listToAttrs
];
# Collects the inputs of a flake recursively (with possible duplicates).
collectFlakeInputs = input:
[ input ] ++ concatMap collectFlakeInputs (builtins.attrValues (input.inputs or {}));
my = import ./my.nix lib;
}
|