infrastructure

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit 0959fb05c703735262acbbedc7077bf863575818
parent 8c2aabd98be19b26b01c81c931c752fc200315c1
Author: Silas Brack <silasbrack@gmail.com>
Date:   Fri, 12 Jun 2026 20:51:30 +0200

feat: add SMTP config for email verification, update simple-web-app

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>

Diffstat:
Mflake.lock | 8++++----
Mmodules/simple-web-app.nix | 4++++
2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/flake.lock b/flake.lock @@ -318,11 +318,11 @@ "rust-overlay": "rust-overlay" }, "locked": { - "lastModified": 1781288524, - "narHash": "sha256-975Ly1FzbmMl0FnkYq3zW4VpSQ8f005Vga05oJW3Rgk=", + "lastModified": 1781290269, + "narHash": "sha256-M4td8w9IqtM3rkLKglGoYmBCd0P4jGrMWKaoenB7zNk=", "ref": "refs/heads/main", - "rev": "8140a43dac4c21f11f0849a6ad593bc717078889", - "revCount": 126, + "rev": "ca8ca659c1781c72163f5651586556fcd9c86168", + "revCount": 127, "type": "git", "url": "ssh://forgejo@git.fnarglebeast.com/silas/simple-web-app.git" }, diff --git a/modules/simple-web-app.nix b/modules/simple-web-app.nix @@ -64,6 +64,10 @@ in DEBUG = "false"; DB_PATH = cfg.dbPath; JWT_SECRET = cfg.jwtSecret; + SMTP_HOST = "localhost"; + SMTP_PORT = "25"; + SMTP_FROM = "noreply@silasbrack.com"; + SITE_URL = "https://simple.fnarglebeast.com"; RUST_LOG = "info"; }; };