feat: install taskwarrior and do some basic configuration

This commit is contained in:
buffet 2024-08-10 17:16:28 +02:00
parent 49b7e5bfc2
commit 0afdeb261e
3 changed files with 13 additions and 0 deletions

View file

@ -20,6 +20,7 @@ in {
e = "\"$EDITOR\""; e = "\"$EDITOR\"";
mkdir = "mkdir -p"; mkdir = "mkdir -p";
rg = "rg -S"; rg = "rg -S";
t = "task";
}; };
shellOptions = [ shellOptions = [

View file

@ -16,6 +16,7 @@
./nvd.nix ./nvd.nix
./ssh.nix ./ssh.nix
./sway.nix ./sway.nix
./taskwarrior.nix
]; ];
users.users.buffet = { users.users.buffet = {

View file

@ -0,0 +1,11 @@
{
home-manager.users.buffet = {
programs.taskwarrior = {
enable = true;
colorTheme = "light-16";
config = {
default.project = "Inbox";
};
};
};
}