blob: 058d576ce3ea752cc6e547b81c494df61840a712 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# nixos-config - My current NixOS configuration
#
# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of my nixos-config.
#
# You should have received a copy of the License along with this program.
# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
{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 {};
}
|