nix-config/users/tacocat/programs/taskwarrior.nix
2023-11-22 23:54:46 -05:00

25 lines
393 B
Nix

{...}: {
programs.taskwarrior = {
enable = true;
config = {
dateformat = "Y-M-D H:N";
report.list.columns = [
"id"
"entry.age"
"scheduled"
"due"
"description"
"urgency"
];
report.list.labels = [
"ID"
"Age"
"Sched"
"Due"
"Description"
"Urg"
];
};
};
}