1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 17:38:33 +02:00
home-manager/modules/services/mbsync.nix

107 lines
2.7 KiB
Nix
Raw Normal View History

2018-04-26 23:36:09 +02:00
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.mbsync;
2020-02-02 00:39:17 +01:00
mbsyncOptions = [ "--all" ] ++ optional (cfg.verbose) "--verbose"
++ optional (cfg.configFile != null) "--config ${cfg.configFile}";
2018-04-26 23:36:09 +02:00
2020-02-02 00:39:17 +01:00
in {
2018-04-26 23:36:09 +02:00
meta.maintainers = [ maintainers.pjones ];
options.services.mbsync = {
enable = mkEnableOption "mbsync";
2018-04-26 23:36:09 +02:00
package = mkOption {
type = types.package;
default = pkgs.isync;
defaultText = literalExpression "pkgs.isync";
example = literalExpression "pkgs.isync";
description = "The package to use for the mbsync binary.";
2018-04-26 23:36:09 +02:00
};
frequency = mkOption {
type = types.str;
default = "*:0/5";
description = ''
2018-04-26 23:36:09 +02:00
How often to run mbsync. This value is passed to the systemd
timer configuration as the onCalendar option. See
{manpage}`systemd.time(7)`
2018-04-26 23:36:09 +02:00
for more information about the format.
'';
};
verbose = mkOption {
type = types.bool;
default = true;
description = ''
2018-04-26 23:36:09 +02:00
Whether mbsync should produce verbose output.
'';
};
configFile = mkOption {
type = types.nullOr types.path;
default = null;
description = ''
2018-04-26 23:36:09 +02:00
Optional configuration file to link to use instead of
the default file ({file}`~/.mbsyncrc`).
2018-04-26 23:36:09 +02:00
'';
};
preExec = mkOption {
type = types.nullOr types.str;
default = null;
example = "mkdir -p %h/mail";
description = ''
2018-04-26 23:36:09 +02:00
An optional command to run before mbsync executes. This is
useful for creating the directories mbsync is going to use.
'';
};
postExec = mkOption {
type = types.nullOr types.str;
default = null;
2019-07-17 10:02:35 +02:00
example = "\${pkgs.mu}/bin/mu index";
description = ''
2018-04-26 23:36:09 +02:00
An optional command to run after mbsync executes successfully.
This is useful for running mailbox indexing tools.
'';
};
};
config = mkIf cfg.enable {
assertions = [
(lib.hm.assertions.assertPlatform "services.mbsync" pkgs
lib.platforms.linux)
];
2018-04-26 23:36:09 +02:00
systemd.user.services.mbsync = {
2020-02-02 00:39:17 +01:00
Unit = { Description = "mbsync mailbox synchronization"; };
2018-04-26 23:36:09 +02:00
Service = {
Type = "oneshot";
2020-02-02 00:39:17 +01:00
ExecStart =
"${cfg.package}/bin/mbsync ${concatStringsSep " " mbsyncOptions}";
} // (optionalAttrs (cfg.postExec != null) {
ExecStartPost = cfg.postExec;
}) // (optionalAttrs (cfg.preExec != null) {
ExecStartPre = cfg.preExec;
});
2018-04-26 23:36:09 +02:00
};
systemd.user.timers.mbsync = {
2020-02-02 00:39:17 +01:00
Unit = { Description = "mbsync mailbox synchronization"; };
2018-04-26 23:36:09 +02:00
Timer = {
OnCalendar = cfg.frequency;
Unit = "mbsync.service";
};
2020-02-02 00:39:17 +01:00
Install = { WantedBy = [ "timers.target" ]; };
2018-04-26 23:36:09 +02:00
};
};
}