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.).
25 lines
636 B
Nix
25 lines
636 B
Nix
{ inputs }:
|
|
|
|
let
|
|
mkHost = name: extraModules:
|
|
inputs.nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
specialArgs = { inherit inputs; };
|
|
modules = [
|
|
./common.nix
|
|
(import ../modules).gebos-postgres
|
|
(import ../modules).gebos-supabase
|
|
(import ../modules).gebos-caddy
|
|
(import ../modules).gebos-hivemq
|
|
(import ../modules).gebos-ingester
|
|
(import ../modules).gebos-frontend
|
|
./${name}.nix
|
|
] ++ extraModules;
|
|
};
|
|
in
|
|
{
|
|
db-host = mkHost "db-host" [ ];
|
|
app-host = mkHost "app-host" [ ];
|
|
mqtt-ingest = mkHost "mqtt-ingest" [ ];
|
|
}
|