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