Files
dotfiles/system-modules/nx2site/open-web-calendar.nix
Lennart J. Kurzweg (Nx2) 2206e5472b calendar public
2025-01-27 22:20:27 +01:00

16 lines
269 B
Nix

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