19 lines
366 B
Nix
19 lines
366 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
services.gitea = {
|
|
enable = true;
|
|
appName = "The Broccoli Patch"; # Give the site a name
|
|
database = {
|
|
type = "sqlite3";
|
|
};
|
|
httpPort = 3030;
|
|
domain = "git.broccoli.town";
|
|
rootUrl = "https://git.broccoli.town/";
|
|
settings = {
|
|
service = {
|
|
DISABLE_REGISTRATION = true;
|
|
};
|
|
};
|
|
};
|
|
}
|