nixos-config/linux/nebula/forgejo.nix

18 lines
358 B
Nix
Raw Normal View History

2024-02-22 23:36:20 -08:00
{ config, ... }:
2023-10-09 10:44:07 -07:00
{
2024-02-22 23:36:20 -08:00
services.forgejo = {
2023-10-09 10:44:07 -07:00
enable = true;
settings = {
2023-12-06 23:34:51 -08:00
server = with config.constants; {
DOMAIN = domain;
HTTP_ADDR = wildcard;
HTTP_PORT = port.forgejo;
ROOT_URL = "https://forgejo.${domain}";
2023-10-09 10:44:07 -07:00
};
service.DISABLE_REGISTRATION = true;
session.COOKIE_SECURE = true;
};
};
}