Re-enable sync services

This commit is contained in:
Evie Litherland-Smith 2023-09-26 08:17:34 +01:00
parent f99b8955c7
commit 341c5a6eca
3 changed files with 4 additions and 7 deletions

View file

@ -13,10 +13,7 @@
msmtp.enable = true; msmtp.enable = true;
mu.enable = true; mu.enable = true;
}; };
services.mbsync = { services.mbsync.enable = true;
enable = false;
frequency = "*-*-* *:0/30:00";
};
accounts.email = { accounts.email = {
maildirBasePath = ".mail"; maildirBasePath = ".mail";
accounts = let realName = "Evie Litherland-Smith"; accounts = let realName = "Evie Litherland-Smith";

View file

@ -40,8 +40,8 @@
;; mail settings ;; mail settings
(after! mu4e (after! mu4e
(setq mu4e-get-mail-command "mbsync --pull-renew inboxes" (setq mu4e-get-mail-command "true"
mu4e-update-interval 300 mu4e-update-interval 60
mu4e-sent-messages-behavior 'delete mu4e-sent-messages-behavior 'delete
mu4e-attachment-dir "~/Downloads" mu4e-attachment-dir "~/Downloads"
mu4e-change-filenames-when-moving t mu4e-change-filenames-when-moving t

View file

@ -26,6 +26,6 @@
allow-loopback-pinentry allow-loopback-pinentry
''; '';
}; };
password-store-sync.enable = false; password-store-sync.enable = true;
}; };
} }