27 lines
414 B
Nix
27 lines
414 B
Nix
{ 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";
|
|
};
|
|
};
|
|
};
|
|
}
|