15 lines
365 B
Nix
15 lines
365 B
Nix
{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
|
|
default_command = "list --startable"
|
|
'';
|
|
}
|