mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 21:20:32 +01:00
17 lines
281 B
Nix
17 lines
281 B
Nix
{lib, inputs, ...}:
|
|
{
|
|
services.forgejo = {
|
|
enable = true;
|
|
settings.server = {
|
|
HTTP_PORT = 3002;
|
|
ROOT_URL = "https://git.heroin.trade";
|
|
};
|
|
settings = {
|
|
service = {
|
|
DISABLE_REGISTRATION = true;
|
|
REQUIRE_SIGNIN_VIEW = true;
|
|
};
|
|
};
|
|
};
|
|
}
|