satoshipad: run mbsync on timer
Alan Pearce alan@alanpearce.eu
Mon, 05 Aug 2019 14:45:15 +0200
1 files changed, 18 insertions(+), 0 deletions(-)
jump to
M satoshipad.nix → satoshipad.nix
@@ -50,4 +50,22 @@ system.autoUpgrade.dates = "13:24"; virtualisation.docker.autoPrune.dates = "Mon, 13:00"; system.stateVersion = "18.03"; + + systemd.user.services.mbsync = { + description = "Mailbox synchronisation"; + serviceConfig = { + Type = "oneshot"; + ExecStart = "${pkgs.isync}/bin/mbsync -Va"; + ExecStartPost = "${pkgs.unstable.emacs}/bin/emacsclient -e (mu4e-update-index)"; + }; + }; + + systemd.user.timers.mbsync = { + description = "Mailbox synchronisation timer"; + wantedBy = [ "default.target" ]; + timerConfig = { + OnBootSec = "2m"; + OnUnitActiveSec = "10m"; + }; + }; }