1
0
Fork 0

Update gitea service confit to match new names.

This commit is contained in:
Kevin Baensch 2023-01-29 16:23:53 +01:00
parent dccbaf1d7c
commit 4db219c279
Signed by: derped
GPG Key ID: C0F1D326C7626543
1 changed files with 5 additions and 2 deletions

View File

@ -10,7 +10,6 @@ mkIf (elem "gitea" config.machine.services) {
in {
enable = true;
user = "git";
cookieSecure = true;
domain = domain;
rootUrl = "http://${domain}/";
database = {
@ -34,6 +33,10 @@ mkIf (elem "gitea" config.machine.services) {
service = {
DISABLE_REGISTRATION = (lib.mkForce true);
};
session = {
cookieSecure = true;
};
};
};