config/profiles/http/services/cinny.nix

22 lines
512 B
Nix
Raw Normal View History

2023-02-25 00:03:29 +01:00
{ config, pkgs, lib, mkDomain, ... }:
{
# Cinny
# Yet another Matrix client for the web
services.nginx.virtualHosts.${mkDomain "cinny"} = {
forceSSL = true; # addSSL = true;
enableACME = true; #useACMEHost = acmeDomain;
2024-07-04 02:16:29 +02:00
# TODO: the override causes a rebuild which fails on low-RAM systems
2023-02-25 00:03:29 +01:00
root = pkgs.unstable.cinny.override {
2024-07-04 02:16:29 +02:00
#conf = {
# defaultHomeserver = 0;
# homeserverList = [
# "pvv.ntnu.no"
# "matrix.org"
# ];
#};
2023-02-25 00:03:29 +01:00
};
};
}