feat(host): add 'eetion' host (as a test for Orange Pi Zero2 H616)

This commit is contained in:
2026-02-01 22:56:12 +01:00
parent ed24f55d15
commit 0f7f9585b3
5 changed files with 117 additions and 7 deletions

View File

@@ -19,10 +19,27 @@ inputs.colmena.lib.makeHive {
vm.deployment.tags = [ "local" ];
hecuba.deployment = {
targetHost = "hecuba";
targetUser = "username";
targetPort = 22;
tags = [ "cloud" ];
};
hecuba =
{ ... }:
{
imports = [ ../hosts/hecuba ];
deployment = {
targetHost = "hecuba";
targetUser = "username";
targetPort = 22;
tags = [ "cloud" ];
};
};
eetion =
{ ... }:
{
imports = [ ../hosts/eetion ];
deployment = {
targetHost = "eetion";
targetUser = "h";
targetPort = 22;
tags = [ "arm" ];
};
};
}