17 lines
340 B
Nix
17 lines
340 B
Nix
|
{ 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"
|
||
|
];
|
||
|
}
|