Migrate data-mesher to clan service

This commit is contained in:
pinpox
2025-07-07 11:37:33 +02:00
parent df245ff232
commit 84b23489f7
53 changed files with 538 additions and 278 deletions

View File

@@ -0,0 +1,17 @@
{ lib, ... }:
let
module = lib.modules.importApply ./default.nix { };
in
{
clan.modules = {
data-mesher = module;
};
perSystem =
{ ... }:
{
clan.nixosTests.service-data-mesher = {
imports = [ ./tests/vm/default.nix ];
clan.modules."@clan/data-mesher" = module;
};
};
}