home/taskwarrior: setup taskwarrior 3
This commit is contained in:
parent
db0ec4e425
commit
fb934bf0af
|
@ -21,6 +21,7 @@ in {
|
|||
./programs/ncmpcpp.nix
|
||||
./programs/neovim.nix
|
||||
./programs/newsboat
|
||||
./programs/taskwarrior.nix
|
||||
./programs/tmux.nix
|
||||
./programs/zsh
|
||||
|
||||
|
|
|
@ -47,8 +47,6 @@
|
|||
rsync
|
||||
# sc-im
|
||||
slack-term
|
||||
taskwarrior
|
||||
taskwarrior-tui
|
||||
tea
|
||||
tealdeer
|
||||
terminal-parrot
|
||||
|
|
|
@ -0,0 +1,14 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
programs.taskwarrior = {
|
||||
enable = true;
|
||||
package = pkgs.taskwarrior3;
|
||||
config = rec {
|
||||
report.minimal.filter = "(status:pending or status:waiting)";
|
||||
report.minimal.labels = "ID,Project,Tags,Description";
|
||||
report.minimal.sort = "project+,id+";
|
||||
|
||||
uda.taskwarrior-tui.task-report.next.filter = report.minimal.filter;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue