nixos-config/profiles/servers/gitea.nix

13 lines
261 B
Nix
Raw Normal View History

{ pkgs, config, lib, ... }:
{
services.gitea = {
enable = true;
appName = "code.balsoft.ru";
cookieSecure = true;
rootUrl = "https://code.balsoft.ru";
domain = "code.balsoft.ru";
httpPort = 6000;
2020-03-26 14:10:33 +04:00
disableRegistration = true;
};
}