This commit is contained in:
Matt Nish-Lapidus 2025-03-28 11:52:22 -04:00
parent 78998ff52a
commit 840ed37540
7 changed files with 242 additions and 24 deletions

View file

@ -1,4 +1,4 @@
{ nix-config, pkgs, ... }:
{ pkgs, ... }:
{
@ -13,5 +13,23 @@
programs.taskwarrior = {
enable = true;
package = pkgs.taskwarrior3;
config = {
regex = false;
uda.relativeRecurDue.type = "duration";
uda.relativeRecurDue.label = "Rel. Rec. Due";
uda.relativeRecurWait.type = "duration";
uda.relativeRecurWait.label = "Rel. Rec. Wait";
uda.expires.type = "string";
uda.expires.label = "Expires";
uda.completeRecurDue.type = "string";
uda.completeRecurDue.label = "Com. Rec. Due";
uda.completeRecurWait.type = "string";
uda.completeRecurWait.label = "Com. Rec. Wait";
};
};
home.file.".local/share/task/hooks" = {
source = ./taskwarrior/hooks;
recursive = true;
};
}