Change todoman config

This commit is contained in:
2025-11-30 17:01:29 +01:00
parent 1fef6cedcb
commit 68abcf7644

View File

@@ -1,12 +1,14 @@
{ config, pkgs, ... }:
{
home.packages = [ pkgs.todoman ];
xdg.configFile."todoman/config.py".text = ''
path = "${config.xdg.dataHome}/calendars/*/*"
date_format = "%d-%m-%Y"
programs.todoman = {
enable = true;
glob = "*/*";
extraConfig = ''
date_format = "%Y-%m-%d"
time_format = "%H:%M"
default_list = "personal"
default_due = 48
default_due = 0
default_command = "list --sort due"
humanize = True
'';
};
}