This repository has been archived on 2026-04-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
AsaJS/modules/features/system/forgejo.nix
2026-04-20 05:12:26 +07:00

17 lines
409 B
Nix

{...}: {
services.forgejo = {
enable = true;
database.type = "mysql";
settings = {
service.DISABLE_REGISTRATION = true;
server = {
HTTP_PORT = 21350;
SSH_PORT = 15523;
START_SSH_SERVER = false;
SSH_CREATE_AUTHORIZED_KEYS_FILE = true;
SSH_DOMAIN = "server.asakiyuki.com";
ROOT_URL = "https://git.asakiyuki.com/";
};
};
};
}