18 lines
288 B
Nix
18 lines
288 B
Nix
{ ... }:
|
|
let
|
|
module = ./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;
|
|
};
|
|
};
|
|
}
|