home/taskwarrior: setup taskwarrior 3
This commit is contained in:
parent
db0ec4e425
commit
fb934bf0af
|
@ -21,6 +21,7 @@ in {
|
||||||
./programs/ncmpcpp.nix
|
./programs/ncmpcpp.nix
|
||||||
./programs/neovim.nix
|
./programs/neovim.nix
|
||||||
./programs/newsboat
|
./programs/newsboat
|
||||||
|
./programs/taskwarrior.nix
|
||||||
./programs/tmux.nix
|
./programs/tmux.nix
|
||||||
./programs/zsh
|
./programs/zsh
|
||||||
|
|
||||||
|
|
|
@ -47,8 +47,6 @@
|
||||||
rsync
|
rsync
|
||||||
# sc-im
|
# sc-im
|
||||||
slack-term
|
slack-term
|
||||||
taskwarrior
|
|
||||||
taskwarrior-tui
|
|
||||||
tea
|
tea
|
||||||
tealdeer
|
tealdeer
|
||||||
terminal-parrot
|
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