1
Fork 0
satellite/home/features/cli/khal.nix
2023-07-18 02:50:05 +03:00

22 lines
438 B
Nix

# TODO: sync theme with global theme
{ pkgs, ... }: {
home.packages = with pkgs; [ khal ];
xdg.configFile."khal/config".text = ''
[calendars]
[[calendars]]
path = ~/Calendars/*
type = discover
color = dark magenta
[locale]
timeformat = %H:%M
dateformat = %d/%m/%Y
[view]
theme = light
'';
satellite.persistence.at.data.apps.khal.directories = [
"Calendars"
];
}