Enable khal for calendar

This commit is contained in:
Evie Litherland-Smith 2023-09-26 10:02:40 +01:00
parent 9e79181f9a
commit c9da3247f9

View file

@ -1,12 +1,16 @@
{ config, lib, pkgs, ... }:
{
programs.vdirsyncer.enable = true;
programs = {
vdirsyncer.enable = true;
khal.enable = true;
};
accounts.calendar = {
basePath = ".calendar";
accounts = {
nextcloud = {
primary = true;
primaryCollection = "Personal";
local = {
type = "filesystem";
fileExt = ".ics";
@ -23,6 +27,10 @@
collections = [ "from a" ];
metadata = [ "color" "displayname" ];
};
khal = {
enable = true;
type = "discover";
};
};
};
};