nix-configs

Personal NixOS and home-manager configuration files
Log | Files | Refs

commit 910e415194980ec3c76e95c55f9a6a88d397c356
parent 4d9e0128d035f84b2c387e61e115fee95ba00935
Author: breadcat <breadcat@users.noreply.github.com>
Date:   Mon, 15 Sep 2025 14:03:53 +0100

Assign profile to cron jobs

Diffstat:
Mmachines/ilias.nix | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/machines/ilias.nix b/machines/ilias.nix @@ -83,9 +83,9 @@ in cron = { enable = true; systemCronJobs = [ - "0 */4 * * * ${username} tank-sort" - "5 */4 * * * ${username} tank-log" - "0 */12 * * * ${username} backup-cloud" + "0 */4 * * * ${username} . /etc/profile; tank-sort" + "5 */4 * * * ${username} . /etc/profile; tank-log" + "0 */12 * * * ${username} backup-cloud" ]; }; };