clan services: use service modules from clan-core by default

Users will use clan-core services first before making their own. Therefore this is a better default. Also it allow us to simplify rendering of our docs
This commit is contained in:
DavHau
2025-06-30 16:03:48 +07:00
parent ae2b9313bd
commit 50cce90527
6 changed files with 43 additions and 37 deletions

View File

@@ -1,6 +1,12 @@
{ lib, clanLib }:
{
lib,
clanLib,
clan-core,
}:
let
services = clanLib.callLib ./distributed-service/inventory-adapter.nix { };
services = clanLib.callLib ./distributed-service/inventory-adapter.nix {
inherit clan-core;
};
in
{
inherit (services) mapInstances;