Files
Gebos/nix/modules/gebos-frontend.nix
T
Klaus 2d57db8182
check / flake-check (pull_request) Has been cancelled
Add infrastructure skeleton for review (refs #21)
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.).
2026-05-27 17:23:02 +00:00

20 lines
482 B
Nix

{ config, lib, pkgs, ... }:
let
cfg = config.services.gebos.frontend;
in
{
options.services.gebos.frontend = {
enable = lib.mkEnableOption "Gebos static SPA";
package = lib.mkOption {
type = lib.types.package;
default = pkgs.callPackage ../../frontend { };
};
};
config = lib.mkIf cfg.enable {
# Nothing to install at the system level — Caddy serves the package's
# `share/frontend` directory directly. See nix/hosts/app-host.nix.
};
}