2019-07-14 18:08:33 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
cfg = config.services.taskwarrior-sync;
|
|
|
|
|
2020-02-02 00:39:17 +01:00
|
|
|
in {
|
2019-07-14 18:08:33 +02:00
|
|
|
meta.maintainers = with maintainers; [ minijackson pacien ];
|
|
|
|
|
|
|
|
options.services.taskwarrior-sync = {
|
|
|
|
enable = mkEnableOption "Taskwarrior periodic sync";
|
|
|
|
|
|
|
|
frequency = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "*:0/5";
|
|
|
|
description = ''
|
|
|
|
How often to run <literal>taskwarrior sync</literal>. This
|
|
|
|
value is passed to the systemd timer configuration as the
|
|
|
|
<literal>OnCalendar</literal> option. See
|
|
|
|
<citerefentry>
|
|
|
|
<refentrytitle>systemd.time</refentrytitle>
|
|
|
|
<manvolnum>7</manvolnum>
|
|
|
|
</citerefentry>
|
|
|
|
for more information about the format.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2021-07-07 23:24:27 +02:00
|
|
|
assertions = [
|
|
|
|
(lib.hm.assertions.assertPlatform "services.taskwarrior-sync" pkgs
|
|
|
|
lib.platforms.linux)
|
|
|
|
];
|
|
|
|
|
2019-07-14 18:08:33 +02:00
|
|
|
systemd.user.services.taskwarrior-sync = {
|
2020-02-02 00:39:17 +01:00
|
|
|
Unit = { Description = "Taskwarrior sync"; };
|
2019-07-14 18:08:33 +02:00
|
|
|
Service = {
|
|
|
|
CPUSchedulingPolicy = "idle";
|
|
|
|
IOSchedulingClass = "idle";
|
|
|
|
ExecStart = "${pkgs.taskwarrior}/bin/task synchronize";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
systemd.user.timers.taskwarrior-sync = {
|
2020-02-02 00:39:17 +01:00
|
|
|
Unit = { Description = "Taskwarrior periodic sync"; };
|
2019-07-14 18:08:33 +02:00
|
|
|
Timer = {
|
|
|
|
Unit = "taskwarrior-sync.service";
|
|
|
|
OnCalendar = cfg.frequency;
|
|
|
|
};
|
2020-02-02 00:39:17 +01:00
|
|
|
Install = { WantedBy = [ "timers.target" ]; };
|
2019-07-14 18:08:33 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|