taskwarrior

This commit is contained in:
Michael Thomson 2024-02-28 07:53:08 -05:00
parent 4cfb0f5fe4
commit b38b6512ea
No known key found for this signature in database
2 changed files with 10 additions and 1 deletions

View File

@ -6,6 +6,7 @@
../../modules/home-manager/wezterm
../../modules/home-manager/zsh
../../modules/home-manager/tmux
../../modules/home-manager/taskwarrior
];
home.username = "mthomson";
home.homeDirectory = "/Users/mthomson";
@ -14,7 +15,6 @@
home.packages = with pkgs; [
btop
spotify-player
tmuxifier
neofetch
nodejs
corepack_latest

View File

@ -0,0 +1,9 @@
{ pkgs, config, ... }:
{
programs = {
taskwarrior = {
enable = true;
};
};
}