22 lines
737 B
Nix
22 lines
737 B
Nix
{ config, pkgs, lib, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [
|
|
taskopen
|
|
];
|
|
|
|
programs.taskwarrior = {
|
|
enable = true;
|
|
package = pkgs.taskwarrior3;
|
|
dataLocation = "${config.xdg.dataHome}/taskwarrior/tasks";
|
|
colorTheme = "no-color";
|
|
config = {
|
|
report.list.columns = ["id" "depends.indicator" "priority" "project" "recur.indicator" "scheduled.countdown" "due" "until.age" "status.short" "description.count" "tags"];
|
|
report.list.labels= ["ID" "D" "Prio" "Proj" "R" "Scheduled" "Due" "Until" "S" "Description" "Tags"];
|
|
};
|
|
extraConfig = "
|
|
hooks.location=${config.xdg.dataHome}/taskwarrior/hooks
|
|
verbose=affected,context,edit,label,header,new-id,project,special,sync,recur
|
|
";
|
|
};
|
|
}
|