Add renovate config

This commit is contained in:
Michael Huebner 2025-03-31 15:23:13 +02:00
parent 4c8e46104c
commit 9e53da4c85

View file

@ -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 = { cron = {
enable = true; enable = true;
systemCronJobs = [ systemCronJobs = [
"* * * * * root ls -l / > /tmp/cronout 2>&1" "* * * * * root ls -l / > /tmp/cronout 2>&1"
]; ];
} };
}; };
} }