test: setting up opencloud and microvms

This commit is contained in:
Nick 2025-12-04 23:24:00 -06:00
parent 0ed3bb9b64
commit b5929e0834
8 changed files with 79 additions and 35 deletions

View file

@ -0,0 +1,20 @@
{ flake, ... }:
let
inherit (flake.config.services) instances;
service = instances.caddy;
in
{
services.caddy = {
enable = true;
};
networking = {
firewall = {
allowedTCPPorts = [
service.ports.port0
service.ports.port1
];
};
};
}