Compare commits
No commits in common. "d1a3353419b8b01d7ff80fe8a80f535fffff1641" and "692620ab4b7e126a0814e35be961d798b41f3c5a" have entirely different histories.
d1a3353419
...
692620ab4b
3 changed files with 0 additions and 39 deletions
|
@ -20,7 +20,6 @@
|
|||
./gerd/services/nextcloud.nix
|
||||
./gerd/services/stalwart
|
||||
|
||||
./gerd/services/element.nix
|
||||
./gerd/services/matrix-synapse.nix
|
||||
];
|
||||
|
||||
|
|
|
@ -1,36 +0,0 @@
|
|||
{ config, pkgs, ... }:
|
||||
|
||||
let
|
||||
svc_domain = "chat.${config.mine.shared.settings.domain}";
|
||||
|
||||
# configure element web client
|
||||
pkg_element = pkgs.element-web.override {
|
||||
conf = {
|
||||
default_theme = "dark";
|
||||
features.feature_latex_maths = true;
|
||||
disable_guests = true;
|
||||
|
||||
default_server_name = config.mine.shared.settings.domain;
|
||||
};
|
||||
};
|
||||
in {
|
||||
services.nginx.virtualHosts."${svc_domain}" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
locations."/".root = pkg_element;
|
||||
};
|
||||
|
||||
mine.shared.meta.element = {
|
||||
name = "Element";
|
||||
description = "We host our own Element instance, get on it and start chatting!";
|
||||
url = "https://${svc_domain}";
|
||||
|
||||
package = let
|
||||
pkg = pkg_element;
|
||||
in {
|
||||
name = pkg.pname;
|
||||
version = pkg.version;
|
||||
meta = pkg.meta;
|
||||
};
|
||||
};
|
||||
}
|
|
@ -182,8 +182,6 @@ in {
|
|||
matrix-synapse-config-authelia-secret.owner = matrix_synapse_user;
|
||||
};
|
||||
|
||||
mine.shared.settings.matrix-synapse.domain = svc_domain;
|
||||
|
||||
mine.shared.meta.matrix-synapse = {
|
||||
name = "Matrix Synapse";
|
||||
description = "We host our own Matrix homeserver using Synapse! Login using your favourite which supports OpenID.";
|
||||
|
|
Loading…
Reference in a new issue