17 lines
198 B
Nix
17 lines
198 B
Nix
{
|
|
self,
|
|
lib,
|
|
...
|
|
}: let
|
|
clib = import "${self}/lib/server" {inherit lib;};
|
|
in {
|
|
imports = [
|
|
{
|
|
_module.args.clib = clib;
|
|
}
|
|
./options.nix
|
|
./infra
|
|
./services
|
|
];
|
|
}
|