15 lines
275 B
Nix
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 = { };
|
|
};
|
|
};
|
|
}
|