linuxware/services/forgejo.nix

16 lines
238 B
Nix
Raw Normal View History

2024-08-19 20:33:05 -03:00
{
2024-08-19 21:08:42 -03:00
services.forgejo = {
2024-08-19 20:33:05 -03:00
enable = true;
lfs.enable = true;
settings = {
server = {
2024-08-19 21:08:42 -03:00
DISABLE_REGISTRATION = true;
2024-08-19 20:33:05 -03:00
HTTP_PORT = 3788;
ROOT_URL = "https://git.thewizard.link";
};
};
};
}