Modularize and improve mail and calendar config

This commit is contained in:
2025-11-29 16:56:20 +01:00
parent 6aac1fb788
commit 44117cf8da
7 changed files with 174 additions and 337 deletions

View File

@@ -0,0 +1,26 @@
{ config, ... }:
{
programs.khal = {
enable = true;
locale = {
timeformat = "%H:%M";
dateformat = "%m-%d";
};
};
accounts.calendar.accounts = {
"radicale" = {
khal = {
enable = true;
type = "discover";
color = "light blue";
};
};
"university" = {
khal = {
enable = true;
color = "#c72125";
};
};
};
}