# nixos-config - My current NixOS configuration # # Copyright (C) 2025 Benedikt Peetz # 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 . {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 {}; }