Gitea: Difference between revisions
Appearance
mNo edit summary |
mNo edit summary |
||
| Line 3: | Line 3: | ||
== Installation == | == Installation == | ||
To setup Gitea locally, this is the most minimal configuration to get started | To setup Gitea locally, this is the most minimal configuration to get started. Find additional configuration options under [https://search.nixos.org/options?&query=services.gitea services.gitea]. | ||
{{File|3=services.gitea = { | {{File|3=services.gitea = { | ||
Revision as of 23:10, 19 January 2026
Gitea is a web app, Git development repository and project manager.
Installation
To setup Gitea locally, this is the most minimal configuration to get started. Find additional configuration options under services.gitea.
❄︎ /etc/nixos/configuration.nix
services.gitea = {
enable = true;
database.type = "mysql";
settings.service.DISABLE_REGISTRATION = true;
};
After that, the web frontend will be available at http://localhost:3000