blob: 8418d92d4f0d82624305c1fb9cec72412999e792 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{lib, ...}: {
# This configures the program in itself (i.e., sets-up a config file, etc.)
programs.mbsync = {
enable = true;
};
# This starts a systemd service to periodically sync mail
services.mbsync = {
enable = true;
};
# Disable the timer, and only activate the service when neomutt starts
# Otherwise, the password command would prompt me to unlock the keepassxc database every
# time.
systemd.user.timers.mbsync = lib.mkForce {};
}
|