Files
dotfiles/home/programs/calendar.nix
servius 686501d464
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m24s
feat: Added more zen search options and khal views
2026-03-04 20:07:00 +05:30

18 lines
453 B
Nix

{pkgs, ...}: {
programs.khal = {
enable = true;
settings = {
default = {
# default_calendar = "fastmail";
};
view = {
agenda_event_format = "{calendar-color}{cancelled}{start-end-time-style} {title}{repeat-symbol}{reset}";
};
};
};
programs.qcal.enable = true;
programs.vdirsyncer.enable = true;
services.vdirsyncer.enable = true;
accounts.calendar.accounts.fastmail.qcal.enable = true;
}