Initial server configuration

This commit is contained in:
2026-01-22 10:50:59 -05:00
commit 0f585eef94
6 changed files with 212 additions and 0 deletions

13
modules/gitea.nix Normal file
View File

@@ -0,0 +1,13 @@
{config, ...}:
{
services.gitea = {
enable = true;
settings = {
service.DISABLE_REGISTRATION = true;
server = {
ROOT_URL = "https://seed.tty.garden/";
};
};
};
}