This commit is contained in:
2024-12-31 13:50:11 +02:00
parent 8c5c9fdccf
commit 795acd8c8e
2 changed files with 2 additions and 2 deletions

View File

@@ -17,7 +17,7 @@ pkgs.stdenv.mkDerivation {
installPhase = ''
mkdir -p $out/bin
cp daily-challenge-reminder-crontab.ts $out/bin/crontab-script
cp daily-challenge-reminder-crontab.ts $out/bin/crontab-script.ts
mv reminder-crontab-exec tuxstrap-crontab
cp tuxstrap-crontab $out/bin/
'';

View File

@@ -75,7 +75,7 @@ in
services.cron = {
enable = true;
systemCronJobs = [
"*/1 * * * * ocbwoy3 ${tuxstrapReminderCrontab}/bin/tuxstrap-cron"
"*/1 * * * * ocbwoy3 bun run ${tuxstrapReminderCrontab}/bin/crontab-script.ts"
];
};