1
Fork 0

Added khal

This commit is contained in:
Matei Adriel 2023-07-18 01:02:44 +02:00
parent dd8353b7d4
commit 227a018fb9
No known key found for this signature in database
4 changed files with 39 additions and 1 deletions
home/features/cli

View file

@ -0,0 +1,16 @@
{ 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"
];
}