2021-02-02 04:26:47 +01:00
|
|
|
{ lib, profiles }:
|
|
|
|
let
|
|
|
|
inherit (builtins) mapAttrs isFunction;
|
2021-02-02 04:57:14 +01:00
|
|
|
|
|
|
|
allProfiles =
|
2021-02-02 04:26:47 +01:00
|
|
|
let
|
|
|
|
filtered = lib.filterAttrs (n: _: n != "core") profiles;
|
|
|
|
in
|
|
|
|
lib.collect isFunction filtered;
|
2021-02-02 04:57:14 +01:00
|
|
|
|
|
|
|
allUsers = lib.collect isFunction users;
|
|
|
|
|
|
|
|
users = lib.flk.defaultImports (toString ../users);
|
2021-02-02 04:26:47 +01:00
|
|
|
in
|
|
|
|
with profiles;
|
|
|
|
mapAttrs (_: v: lib.flk.profileMap v)
|
2021-02-02 04:57:14 +01:00
|
|
|
# define your own suites below
|
2021-02-02 04:26:47 +01:00
|
|
|
rec {
|
2021-02-04 02:58:58 +01:00
|
|
|
core = [ users.nixos users.root ];
|
2021-02-02 04:26:47 +01:00
|
|
|
} // {
|
2021-02-02 04:57:14 +01:00
|
|
|
inherit allProfiles allUsers;
|
2021-02-02 04:26:47 +01:00
|
|
|
}
|