This commit is contained in:
XenGi 2026-07-14 19:23:24 +02:00
commit 8cc05e8e40
Signed by: xengi
SSH key fingerprint: SHA256:jxWM2RTHvxxcncXycwwWkP7HCWb4VREN05UGJTbIPZg
6 changed files with 38 additions and 39 deletions

View file

@ -7,11 +7,13 @@ let
${builtins.readFile ./caldav-export.py}
'';
pythonEnv = pkgs.python3.withPackages (ps: with ps; [
caldav
icalendar
pyyaml
]);
pythonEnv = pkgs.python3.withPackages (
ps: with ps; [
caldav
icalendar
pyyaml
]
);
in
{
systemd = {
@ -34,4 +36,3 @@ in
};
};
}