Files
nixcfg/modules/gitea/default.nix
2023-03-19 23:45:36 +00:00

16 lines
272 B
Nix

{ config, pkgs, ... }:
{
services.gitea = {
enable = true;
appName = "My awesome Gitea server"; # Give the site a name
database = {
type = "sqlite3";
};
settings = {
service = {
DISABLE_REGISTRATION = true;
};
};
};
}