11 lines
233 B
Nix
11 lines
233 B
Nix
{...}: {
|
|
services.forgejo = {
|
|
enable = true;
|
|
database.type = "mysql";
|
|
settings.server = {
|
|
HTTP_PORT = 21350;
|
|
ROOT_URL = "https://git.asakiyuki.com/";
|
|
service.DISABLE_REGISTRATION = true;
|
|
};
|
|
};
|
|
}
|