2d57db8182
check / flake-check (pull_request) Has been cancelled
Lays out the agreed shape from the design discussion: one flake at the root with three nixosConfigurations (mqtt-ingest, db-host, app-host), vendored Supabase docker-compose pointed at the external db-host, Caddy → Kong → PostgREST/GoTrue, a Go MQTT→Postgres ingester stub, deploy-rs node map, and a Gitea Actions workflow that deploys in db → app → ingest order on push to main. No real implementation yet — every host module has TODOs marking the gaps (real hardware config, actual hostnames, HiveMQ packaging, vendor the full upstream Supabase compose, etc.).
30 lines
793 B
Nix
30 lines
793 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
networking.hostName = "mqtt-ingest";
|
|
|
|
services.gebos.hivemq = {
|
|
enable = true;
|
|
# Persistent sessions on disk — single-node, devices reconnect on restart.
|
|
persistentSessions = true;
|
|
tlsPort = 8883;
|
|
};
|
|
|
|
services.gebos.ingester = {
|
|
enable = true;
|
|
mqttBroker = "tcp://127.0.0.1:1883"; # local broker
|
|
postgresUrl = "postgres://gebos_ingest@db-host.gebos.internal:5432/postgres?sslmode=require";
|
|
# Password sourced from /etc/gebos/secrets.env via EnvironmentFile.
|
|
};
|
|
|
|
# Caddy fronts TLS for `ingest.ge-bos.de` and forwards to HiveMQ.
|
|
services.gebos.caddy = {
|
|
enable = true;
|
|
sites = {
|
|
"ingest.ge-bos.de" = { tcpProxy = "127.0.0.1:8883"; };
|
|
};
|
|
};
|
|
|
|
networking.firewall.allowedTCPPorts = [ 8883 ];
|
|
}
|