calendar public

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2025-01-27 22:20:27 +01:00
parent 9c96585401
commit 2206e5472b
3 changed files with 155 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{ pkgs, domain, ... }:
{
services = {
open-web-calendar = {
enable = true;
domain = "cal.${domain}";
package = pkgs.open-web-calendar;
settings = {
# PORT = 21342;
};
calendarSettings = {
};
};
};
}