mirror of
https://git.gay/xqtc/nixos-config
synced 2024-11-22 21:50:33 +01:00
20 lines
303 B
Nix
20 lines
303 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;
|
|
};
|
|
};
|
|
};
|
|
}
|