9 lines
249 B
Nix
9 lines
249 B
Nix
{
|
|
system ? builtins.currentSystem,
|
|
pkgs ? import ../../.. { inherit system; },
|
|
}:
|
|
{
|
|
mit = import ./mit.nix { inherit system pkgs; };
|
|
heimdal = import ./heimdal.nix { inherit system pkgs; };
|
|
ldap = import ./ldap { inherit system pkgs; };
|
|
}
|