From 9e53da4c85e2692c6d4f2e3dc68fc8de81ee9e3f Mon Sep 17 00:00:00 2001
From: Michael Huebner <michael.huebner@ptspaper.de>
Date: Mon, 31 Mar 2025 15:23:13 +0200
Subject: [PATCH] Add renovate config

---
 configuration.nix | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

diff --git a/configuration.nix b/configuration.nix
index 5974c8e..26bf54b 100644
--- a/configuration.nix
+++ b/configuration.nix
@@ -82,11 +82,27 @@ in
       };
     };
 
+    renovate = {
+      enable = true;
+      schedule = "TODO";
+      settings = {
+        endpoint = "http://<url>.de/api/v1/";
+        token = "";
+        persistRepoData = true;
+        platform = "forgejo";
+        autodiscover = true;
+        onboardingConfig= {
+          extends= ["config:recommended"];
+        };
+        prCommitsPerRunLimit= 0;
+      };
+    };
+
     cron = {
       enable = true;
       systemCronJobs = [
         "* * * * *  root   ls -l / > /tmp/cronout 2>&1"
       ];
-    }
+    };
   };
 }
\ No newline at end of file