2021-04-18 21:45:08 -05:00
|
|
|
{ lib }:
|
2021-03-20 09:36:14 -07:00
|
|
|
|
2021-04-26 10:52:26 -07:00
|
|
|
{ suites, profiles } @ args:
|
2021-03-20 09:36:14 -07:00
|
|
|
let
|
2021-04-17 20:35:05 -05:00
|
|
|
inherit (lib) os;
|
2021-03-20 09:36:14 -07:00
|
|
|
|
2021-04-26 10:52:26 -07:00
|
|
|
profileSet = lib.genAttrs' profiles (path: {
|
|
|
|
name = baseNameOf path;
|
|
|
|
value = os.mkProfileAttrs (toString path);
|
|
|
|
});
|
2021-03-20 09:36:14 -07:00
|
|
|
|
2021-04-26 10:52:26 -07:00
|
|
|
definedSuites = suites profileSet;
|
2021-03-20 09:36:14 -07:00
|
|
|
|
2021-04-26 10:52:26 -07:00
|
|
|
allProfiles = lib.collectProfiles profileSet;
|
|
|
|
in
|
|
|
|
lib.mapAttrs (_: v: os.profileMap v) definedSuites // {
|
|
|
|
inherit allProfiles;
|
|
|
|
}
|
2021-03-20 09:36:14 -07:00
|
|
|
|
|
|
|
|