]> git.immae.eu Git - perso/Immae/Config/Nix.git/blobdiff - nixops/eldiron.nix
Add crontab to send backup to immae.eu
[perso/Immae/Config/Nix.git] / nixops / eldiron.nix
index 7ce33a927f194985f9f3e0b2199d9e8baa63afcb..b54702e68e71d2460c35174a97150aad1aae0083 100644 (file)
       source = ldap_authorized_keys;
     };
 
+    services.cron = {
+      enable = true;
+      systemCronJobs = [
+        ''
+          # The star after /var/lib/* avoids deleting all folders in case of problem
+          0 3,9,15,21 * * * root rsync -e "ssh -i /root/.ssh/id_charon_vpn" -aAXvz --delete --numeric-ids --super --rsync-path="sudo rsync" /var/lib/* immae@immae.eu:
+        ''
+      ];
+    };
   };
 }