mirror of
https://github.com/starr-dusT/dotfiles.git
synced 2025-02-19 19:27:31 -08:00
23 lines
428 B
Nix
23 lines
428 B
Nix
|
{ config, lib, pkgs, user, ... }:
|
||
|
{
|
||
|
services.gitea = {
|
||
|
enable = true;
|
||
|
lfs.enable = true;
|
||
|
dump = {
|
||
|
enable = true;
|
||
|
interval = "23:05";
|
||
|
};
|
||
|
settings.service = {
|
||
|
DISABLE_REGISTRATION = true;
|
||
|
};
|
||
|
settings.server = {
|
||
|
DOMAIN = "git.tstarr.us";
|
||
|
HTTP_PORT = 3001;
|
||
|
ROOT_URL = "https://git.tstarr.us";
|
||
|
};
|
||
|
#settings.actions = {
|
||
|
# ENABLED = true;
|
||
|
#};
|
||
|
};
|
||
|
}
|