commit 64e31bfcd941d9fcf776061c82c780c2e5e3500d
parent b9cf77ce9875d971f568caf8dad05f74a131e94f
Author: breadcat <breadcat@users.noreply.github.com>
Date: Fri, 17 Apr 2026 08:42:00 +0100
Only run tank-log after successful tank-sort run
Diffstat:
2 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/machines/ilias.nix b/machines/ilias.nix
@@ -76,7 +76,6 @@ let machine = "ilias"; in {
enable = true;
systemCronJobs = [
"0 */4 * * * ${username} . /etc/profile; tank-sort"
- "5 */4 * * * ${username} . /etc/profile; tank-log"
"0 */12 * * * ${username} backup-cloud"
];
};
diff --git a/scripts/tank-sort.nix b/scripts/tank-sort.nix
@@ -87,6 +87,9 @@ let
--extensions "$extensions" \
"$temp_mount"
+ # git tank logger
+ tank-log
+
echo "Media sort completed successfully"
'';
in {