16 lines
315 B
Nix
16 lines
315 B
Nix
{
|
|
services.gogs = {
|
|
enable = true;
|
|
domain = "git.cloonar.com";
|
|
rootUrl = "http://git.cloonar.com/";
|
|
httpAddress = "git.cloonar.com";
|
|
httpPort = 3000;
|
|
extraConfig = ''
|
|
[server]
|
|
EXTERNAL_URL = http://git.cloonar.com/
|
|
[auth]
|
|
DISABLE_REGISTRATION = true
|
|
'';
|
|
};
|
|
}
|