From f759f44024f14f0859b2aa5eccdd7d90520f0d76 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Thu, 1 Dec 2022 14:27:05 +0100 Subject: [PATCH] gitea: Renamed property to SSH_PORT --- hosts/architect/gitea.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hosts/architect/gitea.nix b/hosts/architect/gitea.nix index 064dbc2..90ebe2a 100644 --- a/hosts/architect/gitea.nix +++ b/hosts/architect/gitea.nix @@ -11,9 +11,11 @@ in domain = domain; appName = "Gitea"; rootUrl = "https://${domain}"; - ssh.clonePort = 22; settings = { - server.LFS_START_SERVER = true; + server = { + LFS_START_SERVER = true; + SSH_PORT = 22; + }; openid.enable_openid_signin = true; }; };