nixos-config/config/programs/taskwarrior.nix

10 lines
235 B
Nix

_: {
programs.taskwarrior = {
enable = true;
colorTheme = "dark-violets-256";
config = {
weekstart = "monday"; # no americans, the week does not start with week-end
};
dataLocation = "~/Data/tasks/";
};
}