From 374981c19d0dd06635ebd14f7744bdb214e63eae Mon Sep 17 00:00:00 2001 From: Ahwx Date: Sun, 12 Oct 2025 01:21:58 +0200 Subject: [PATCH] chore: set `SSH_PORT` to the ssh port that `openssh` is using --- modules/services/forgejo.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/forgejo.nix b/modules/services/forgejo.nix index 6dd6ccc..38e10dd 100644 --- a/modules/services/forgejo.nix +++ b/modules/services/forgejo.nix @@ -25,7 +25,7 @@ in ROOT_URL = "https://${srv.DOMAIN}/"; HTTP_PORT = 3050; DISABLE_SSH = false; - SSH_PORT = 2222; + SSH_PORT = 9123; }; # You can temporarily allow registration to create an admin user. service.DISABLE_REGISTRATION = true;