tasks
This commit is contained in:
parent
78998ff52a
commit
840ed37540
7 changed files with 242 additions and 24 deletions
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue