16 lines
269 B
Nix
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 = {
|
|
};
|
|
};
|
|
};
|
|
}
|