NixOS-Configs/home/common/todoman.nix
2024-02-21 22:40:02 -06:00

10 lines
296 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
'';
}