blob: f23733a4a344065a3fc49735a1706563c96f1689 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
|
{
lib,
config,
pkgs,
...
}: let
cfg = config.soispha.programs.taskwarrior;
hooksDir =
pkgs.runCommandNoCCLocal "mk-taskwarrior-hooks" {}
(''
mkdir "$out"
''
+ (builtins.concatStringsSep "\n"
(lib.attrsets.mapAttrsToList
(name: value: ''
ln --symbolic "${lib.getExe value.executable}" "$out/${value.mode}_${name}"
'')
cfg.hooks)));
mkHook = mode: deps: path: {
inherit mode;
executable = pkgs.writeShellApplication {
name = "add-hook-${builtins.baseNameOf path}";
runtimeInputs = [pkgs.taskwarrior3 pkgs.coreutils] ++ deps;
inheritPath = false;
text =
# bash
''
die() {
echo "$@">&2
exit 1
}
enable_hook_dbg() {
# TODO: We should probably be smarter with the debug detection <2025-04-04>
if echo "$2" | grep --quite 'rc.debug.hooks='; then
set -x
mkdir --parents "~/.cache/task"
exec >>"~/.cache/task/hook.log.$0"
exec 2>>""~/.cache/task/hook.log.$0"
fi
}
addedCall() {
${builtins.readFile path}
}
${
if mode == "on-modify"
then "read -r old_task"
else "old_task=NULL"
}
read -r new_task
# We don't change the task, thus immediately return the JSON
echo "$new_task"
enable_hook_dbg
addedCall "$new_task" "$old_task"
exit 0
'';
};
};
in {
options.soispha.programs.taskwarrior = {
enable = lib.mkEnableOption "taskwarrior";
includeFiles = lib.mkOption {
type = lib.types.attrsOf lib.types.path;
description = "Extra files to include in the taskwarrior config";
default = {};
apply = value:
builtins.concatStringsSep "\n"
(builtins.map (path: "include ${path}")
(builtins.attrValues value));
};
hooks = lib.mkOption {
description = "Map hook names to their values";
type = lib.types.attrsOf (lib.types.submodule {
options = {
mode = lib.mkOption {
type = lib.types.enum ["on-add" "on-modify"];
description = "The type of the hook";
};
executable = lib.mkOption {
type = lib.types.package;
description = "The executable to call.";
};
};
});
};
};
config = {
lib.taskwarrior = {
inherit mkHook;
};
home-manager.users.soispha = lib.mkIf cfg.enable {
services.taskwarrior-sync = {
enable = true;
package = pkgs.taskwarrior3;
};
programs.taskwarrior = {
enable = true;
colorTheme = ./nord.theme;
package = pkgs.taskwarrior3;
extraConfig = cfg.includeFiles;
config = {
complete.all.tags = true;
list.all = {
projects = true;
tags = true;
};
regex = true;
weekstart = "Monday";
uda = {
total_active_time = {
type = "duration";
label = "Total active time";
};
};
alias = {
mod = "modify";
};
color = true;
hooks.location = "${hooksDir}";
urgency.uda.priority = {
H.coefficient = 6.0;
M.coefficient = 0;
L.coefficient = -1.8;
};
};
};
};
};
}
|