Files
dotfiles/system-modules/nx2site/open-web-calendar.nix
Lennart J. Kurzweg (Nx2) d2d1ce7830 overlays refactor
2025-06-17 19:48:31 +02:00

15 lines
275 B
Nix

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