nixos-config/config/programs/taskwarrior.nix

11 lines
235 B
Nix
Raw Normal View History

2022-08-14 13:55:07 +00:00
_: {
programs.taskwarrior = {
enable = true;
2022-08-14 14:37:47 +00:00
colorTheme = "dark-violets-256";
2022-08-14 13:55:07 +00:00
config = {
weekstart = "monday"; # no americans, the week does not start with week-end
};
dataLocation = "~/Data/tasks/";
};
}