nix-config/users/tacocat/programs/taskwarrior.nix

25 lines
401 B
Nix
Raw Normal View History

{...}: {
programs.taskwarrior = {
enable = true;
2023-11-22 03:30:31 +00:00
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"
];
};
};
}