added todoman

This commit is contained in:
Don Harper 2024-02-21 22:40:02 -06:00
parent cbb5656921
commit 306b10b02b
2 changed files with 11 additions and 0 deletions

View file

@ -15,6 +15,7 @@
./neovim.nix
./newsboat.nix
./taskwarrior.nix
./todoman.nix
./topgrade.nix
./tmux.nix
./vifm.nix

10
home/common/todoman.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, ... }: {
home.packages = with pkgs; [ todoman ];
xdg.configFile."todoman/config.py".text = /* python */ ''
path = "~/.config/vdirsyncer/storage/calendar/*"
date_format = "%Y-%m-%d"
time_format = "%H:%M"
default_list = "duckunix@gmail.com"
default_due = 48
'';
}