16 lines
272 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|