nixos/modules/home-manager/taskwarrior.nix
2025-03-07 11:27:13 -05:00

13 lines
136 B
Nix

{
pkgs,
config,
...
}: {
programs = {
taskwarrior = {
enable = true;
package = pkgs.taskwarrior3;
};
};
}