diff --git a/home/common/default.nix b/home/common/default.nix index bfd679a..4d0c398 100644 --- a/home/common/default.nix +++ b/home/common/default.nix @@ -15,6 +15,7 @@ ./neovim.nix ./newsboat.nix ./taskwarrior.nix + ./todoman.nix ./topgrade.nix ./tmux.nix ./vifm.nix diff --git a/home/common/todoman.nix b/home/common/todoman.nix new file mode 100644 index 0000000..6af965a --- /dev/null +++ b/home/common/todoman.nix @@ -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 + ''; +}