Add todoman

This commit is contained in:
2025-11-29 17:01:15 +01:00
parent c150949ff4
commit 3b505d18f2

View File

@@ -0,0 +1,12 @@
{ config, pkgs, ... }:
{
home.packages = [ pkgs.todoman ];
xdg.configFile."todoman/config.py".text = ''
path = "${config.xdg.dataHome}/calendars/*/*"
date_format = "%d-%m-%Y"
time_format = "%H:%M"
default_list = "personal"
default_due = 48
'';
}