From 6791b8caccf2a97efc9ed78b511471b4216e2197 Mon Sep 17 00:00:00 2001 From: hodasemi Date: Tue, 20 May 2025 10:55:45 +0200 Subject: [PATCH] Fill in TODOs in git system --- git_system.nix | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/git_system.nix b/git_system.nix index dc905d5..c52502d 100644 --- a/git_system.nix +++ b/git_system.nix @@ -47,7 +47,7 @@ in lfs.enable = true; settings = { server = { - DOMAIN = "localhost"; + DOMAIN = "188.40.66.217"; ROOT_URL = "https://${srv.DOMAIN}"; HTTP_PORT = 3000; SSH_PORT = 62; @@ -62,12 +62,12 @@ in renovate = { enable = true; - schedule = "TODO"; + schedule = "1 h"; credentials = { RENOVATE_TOKEN = "/etc/renovate/token"; }; settings = { - endpoint = "http://.de/api/v1/"; + endpoint = "http://localhost/api/v1/"; persistRepoData = true; platform = "forgejo"; autodiscover = true; @@ -78,12 +78,12 @@ in }; }; - cron = { - enable = true; - systemCronJobs = [ - "00 03 * * * forgejo sh backup_forgejo.sh -d /var/lib/forgejo -u TODO -s TODO -p TODO" - ]; - }; + # cron = { + # enable = true; + # systemCronJobs = [ + # "00 03 * * * forgejo sh backup_forgejo.sh -d /var/lib/forgejo -u TODO -s TODO -p TODO" + # ]; + # }; }; }