All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m24s
18 lines
453 B
Nix
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;
|
|
}
|