diff options
author | EuAndreh <eu@euandre.org> | 2018-07-26 15:50:54 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-07-26 15:50:54 -0300 |
commit | b0036d8b5fe4d347ac77539931661c2ef128fec4 (patch) | |
tree | 18cfb261999c88d72f742bef666e2fc390e0149b | |
parent | Fix lein ancient for private dependencies (diff) | |
download | dotfiles-b0036d8b5fe4d347ac77539931661c2ef128fec4.tar.gz dotfiles-b0036d8b5fe4d347ac77539931661c2ef128fec4.tar.xz |
Fixed mbsync crontab
The email wasn't showing because I wasn't ever running =notmuch new= :facepalm:
Works like a charm now :)
-rw-r--r-- | nixos/configuration.nix | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix index f3c5d3b..c82e334 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -265,9 +265,8 @@ }; services = { - # FIXME - # cron.enable = true; - # cron.systemCronJobs = ["* * * * * andreh mbsync -aV &>> /tmp/mbsync.log"]; + cron.enable = true; + cron.systemCronJobs = ["* * * * * andreh mbsync -aV &>> /tmp/mbsync.log && notmuch new &>> /tmp/notmuch.log"]; xserver = { enable = true; |