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 = {
|
2023-07-02 01:45:18 +02:00
|
|
|
enable = mkEnableOption "Taskwarrior periodic sync";
|
2019-07-14 18:08:33 +02:00
|
|
|
|
2024-08-30 20:48:07 +02:00
|
|
|
package =
|
|
|
|
mkPackageOption pkgs "taskwarrior" { example = "pkgs.taskwarrior3"; };
|
2024-09-04 08:55:42 +02:00
|
|
|
|
2019-07-14 18:08:33 +02:00
|
|
|
frequency = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "*:0/5";
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2023-07-01 01:30:13 +02:00
|
|
|
How often to run `taskwarrior sync`. This
|
2019-07-14 18:08:33 +02:00
|
|
|
value is passed to the systemd timer configuration as the
|
2023-07-01 01:30:13 +02:00
|
|
|
`OnCalendar` option. See
|
|
|
|
{manpage}`systemd.time(7)`
|
2019-07-14 18:08:33 +02:00
|
|
|
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";
|
2024-09-04 08:55:42 +02:00
|
|
|
ExecStart = "${cfg.package}/bin/task synchronize";
|
2019-07-14 18:08:33 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|