migrate gitea to forgejo

This commit is contained in:
leonv@willem 2024-02-16 14:23:46 +01:00
parent 769fe4636e
commit 1e79581442
2 changed files with 4 additions and 4 deletions

View file

@ -3,7 +3,7 @@
./acme.nix
./ddns.nix
./nginx.nix
./gitea.nix
./forgejo.nix
./printing.nix
./restic.nix
./ssh.nix

View file

@ -1,10 +1,10 @@
{ pkgs, ...}:
{
services.gitea = {
services.forgejo = {
enable = true;
appName = "Lambda-Git";
package = pkgs.forgejo;
stateDir = "/gitea";
stateDir = "/forgejo";
database = {
type = "sqlite3";
};
@ -20,4 +20,4 @@
settings.session.COOKIE_SECURE = true;
settings.service.DISABLE_REGISTRATION = true;
};
}
}