1
Files
flake-nixinator/home/modules/email/options.nix

16 lines
347 B
Nix

{
lib,
mylib
}:
with lib;
with mylib.modules;
{
enable = mkEnableOpt "Email";
autosync = mkEnableOpt "Automatically call \"notmuch new\" via systemd timer";
imapnotify = mkEnableOpt "Use imapnotify to sync and index mail automatically";
kmail = {
enable = mkEnableOpt "Kmail";
autostart = mkEnableOpt "Autostart Kmail";
};
}