From 10b8c5b001d302e4c727da05f13da48f8d5fc9a6 Mon Sep 17 00:00:00 2001 From: kat witch Date: Sun, 4 Apr 2021 22:19:29 +0100 Subject: [PATCH] services/gitea: Working PostgreSQL --- services/gitea/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/services/gitea/default.nix b/services/gitea/default.nix index af4107e1..548ac659 100644 --- a/services/gitea/default.nix +++ b/services/gitea/default.nix @@ -18,13 +18,13 @@ httpAddress = "127.0.0.1"; appName = "kittywitch git"; ssh = { clonePort = 62954; }; + database = { + type = "postgres"; + name = "gitea"; + user = "gitea"; + }; settings = { security = { DISABLE_GIT_HOOKS = false; }; - database = { - type = "postgres"; - name = "gitea"; - user = "gitea"; - }; mailer = { ENABLED = true; MAILER_TYPE = "sendmail";