mirror of
https://github.com/nix-community/home-manager
synced 2024-11-01 08:49:44 +01:00
aaebdea769
Support taskwarrior3 migration, following the approach in [1] to avoid breaking changes. [1]: https://github.com/NixOS/nixpkgs/pull/303632 Closes: https://github.com/nix-community/home-manager/issues/5310 Link: https://github.com/nix-community/home-manager/pull/5782
55 lines
1.4 KiB
Nix
55 lines
1.4 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
cfg = config.services.taskwarrior-sync;
|
|
|
|
in {
|
|
meta.maintainers = with maintainers; [ minijackson pacien ];
|
|
|
|
options.services.taskwarrior-sync = {
|
|
enable = mkEnableOption "Taskwarrior periodic sync";
|
|
|
|
package =
|
|
mkPackageOption pkgs "taskwarrior" { example = "pkgs.taskwarrior3"; };
|
|
|
|
frequency = mkOption {
|
|
type = types.str;
|
|
default = "*:0/5";
|
|
description = ''
|
|
How often to run `taskwarrior sync`. This
|
|
value is passed to the systemd timer configuration as the
|
|
`OnCalendar` option. See
|
|
{manpage}`systemd.time(7)`
|
|
for more information about the format.
|
|
'';
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
assertions = [
|
|
(lib.hm.assertions.assertPlatform "services.taskwarrior-sync" pkgs
|
|
lib.platforms.linux)
|
|
];
|
|
|
|
systemd.user.services.taskwarrior-sync = {
|
|
Unit = { Description = "Taskwarrior sync"; };
|
|
Service = {
|
|
CPUSchedulingPolicy = "idle";
|
|
IOSchedulingClass = "idle";
|
|
ExecStart = "${cfg.package}/bin/task synchronize";
|
|
};
|
|
};
|
|
|
|
systemd.user.timers.taskwarrior-sync = {
|
|
Unit = { Description = "Taskwarrior periodic sync"; };
|
|
Timer = {
|
|
Unit = "taskwarrior-sync.service";
|
|
OnCalendar = cfg.frequency;
|
|
};
|
|
Install = { WantedBy = [ "timers.target" ]; };
|
|
};
|
|
};
|
|
}
|