nixos-config/modules/home/taskwarrior.nix

18 lines
222 B
Nix
Raw Normal View History

2025-03-27 22:05:16 -04:00
{ nix-config, pkgs, ... }:
2025-03-27 12:23:31 -04:00
{
home.packages = with pkgs; [
vit
tasksh
taskwarrior-tui
2025-03-27 21:53:32 -04:00
taskopen
2025-03-27 12:23:31 -04:00
# syncall
];
programs.taskwarrior = {
enable = true;
2025-03-27 17:22:27 -04:00
package = pkgs.taskwarrior3;
2025-03-27 12:23:31 -04:00
};
}