11 lines
339 B
Nix
11 lines
339 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"
|
|
'';
|
|
}
|