feat: install taskwarrior and do some basic configuration

This commit is contained in:
buffet 2024-08-10 17:16:28 +02:00
parent 9232e49e6a
commit 055cdaa56a
3 changed files with 13 additions and 0 deletions

View file

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

View file

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

View file

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