Initial NixOS infra flake skeleton

This commit is contained in:
Eli Fadi 2026-03-03 11:21:32 +01:00
commit 9383d615d7
9 changed files with 267 additions and 0 deletions

36
modules/forgejo.nix Normal file
View file

@ -0,0 +1,36 @@
{ config, pkgs, lib, ... }:
{
imports = [ ./flowback-options.nix ];
services.nginx.enable = true;
security.acme.acceptTerms = true;
security.acme.defaults.email = "me@example.com";
services.forgejo = {
enable = true;
settings = {
server = {
DOMAIN = config.services.flowback.forgejoHost;
ROOT_URL = "https://${config.services.flowback.forgejoHost}/";
HTTP_PORT = 3000;
};
service = {
DISABLE_REGISTRATION = true;
};
};
# Database defaults are okay to start; you can move to Postgres if desired
};
services.nginx.virtualHosts.${config.services.flowback.forgejoHost} = {
forceSSL = true;
enableACME = true;
locations."/" = {
proxyPass = "http://127.0.0.1:3000";
proxyWebsockets = true;
};
};
networking.firewall.allowedTCPPorts = [ 22 ];
}