eab0bf074c
Also format all files and add a flake.lock for lib for a folder thats meant to work on other flakes theres never a reason it should need to refer to itself, only other flakes. So "self" and "inputs" are better namings for these variables. The userFlake* is redundant and confusing, when trying to call the functions its hard to figure out how to use them when there are now two lines of arguments to figure out.
36 lines
778 B
Nix
36 lines
778 B
Nix
{ lib }:
|
|
|
|
let mkProfileAttrs =
|
|
/**
|
|
Synopsis: mkProfileAttrs _path_
|
|
|
|
Recursively collect the subdirs of _path_ containing a default.nix into attrs.
|
|
This sets a contract, eliminating ambiguity for _default.nix_ living under the
|
|
profile directory.
|
|
|
|
Example:
|
|
let profiles = mkProfileAttrs ./profiles; in
|
|
assert profiles ? core.default; 0
|
|
**/
|
|
dir:
|
|
let
|
|
imports =
|
|
let
|
|
files = lib.safeReadDir dir;
|
|
|
|
p = n: v:
|
|
v == "directory"
|
|
&& n != "profiles";
|
|
in
|
|
lib.filterAttrs p files;
|
|
|
|
f = n: _:
|
|
lib.optionalAttrs
|
|
(lib.pathExists "${dir}/${n}/default.nix")
|
|
{ default = "${dir}/${n}"; }
|
|
// mkProfileAttrs "${dir}/${n}";
|
|
in
|
|
lib.mapAttrs f imports;
|
|
in mkProfileAttrs
|
|
|