1
Fork 0
satellite/home/features/cli/khal.nix

17 lines
340 B
Nix
Raw Normal View History

2023-07-18 01:02:44 +02:00
{ pkgs, ... }: {
home.packages = with pkgs; [ khal ];
xdg.configFile."khal/config".text = ''
[calendars]
[[calendars]]
path = ~/Calendars/*
type = discover
[locale]
timeformat = %H:%M
dateformat = %d/%m/%Y
'';
satellite.persistence.at.data.apps.khal.directories = [
"Calendars"
];
}