15 lines
199 B
Nix
15 lines
199 B
Nix
|
{
|
||
|
services.gitea = {
|
||
|
enable = true;
|
||
|
|
||
|
lfs.enable = true;
|
||
|
|
||
|
settings = {
|
||
|
server = {
|
||
|
HTTP_PORT = 3788;
|
||
|
ROOT_URL = "https://git.thewizard.link";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|