mirror of
https://github.com/Superredstone/nixos.git
synced 2026-08-19 11:48:57 +02:00
15 lines
286 B
Nix
15 lines
286 B
Nix
{ config, ... }:
|
|
{
|
|
config.services.gitea = {
|
|
enable = true;
|
|
settings = {
|
|
server = {
|
|
DOMAIN = "gitea.patrickcanal.it";
|
|
ROOT_URL = "https://gitea.patrickcanal.it";
|
|
HTTP_PORT = 8001;
|
|
};
|
|
service.DISABLE_REGISTRATION = true;
|
|
};
|
|
};
|
|
}
|