19 lines
370 B
Nix
19 lines
370 B
Nix
{
|
|
services.forgejo = {
|
|
enable = true;
|
|
dump.enable = true;
|
|
lfs.enable = true;
|
|
settings = {
|
|
server = {
|
|
DOMAIN = "git.tristans.cloud";
|
|
ROOT_URL = "https://git.tristans.cloud";
|
|
};
|
|
service = {
|
|
DISABLE_REGISTRATION = true;
|
|
};
|
|
repository = {
|
|
ENABLE_PUSH_CREATE_USER = true;
|
|
};
|
|
};
|
|
};
|
|
}
|