From d79cda5054c4155553d17df1443989ef41a08cd0 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Fri, 23 Jun 2023 02:38:58 +0200 Subject: host my own element, for $reasons --- flora/configuration.nix | 1 + flora/services/element.nix | 30 ++++++++++++++++++++++++++++++ 2 files changed, 31 insertions(+) create mode 100644 flora/services/element.nix (limited to 'flora') diff --git a/flora/configuration.nix b/flora/configuration.nix index 82c08f5..51b9674 100644 --- a/flora/configuration.nix +++ b/flora/configuration.nix @@ -12,6 +12,7 @@ # ./services/znc.nix ./services/mail.nix ./services/trainspotter.nix + ./services/element.nix ]; # Use the GRUB 2 boot loader. diff --git a/flora/services/element.nix b/flora/services/element.nix new file mode 100644 index 0000000..d0621fa --- /dev/null +++ b/flora/services/element.nix @@ -0,0 +1,30 @@ +{ config, lib, pkgs, ... }: +let + clientConfig."m.homeserver".base_url = "https://raccoon.college"; +in +{ + services.nginx.virtualHosts."chat.stuebinm.eu" = { + enableACME = true; + forceSSL = true; + serverAliases = [ + "chat.stuebinm.eu" + ]; + + root = pkgs.element-web.override { + conf = { + default_server_config = null; + default_server_name = "raccoon.college"; + show_labs_settings = true; + disable_guests = true; + brand = "meow"; + integrations_widgets_urls = []; + integrations_ui_url = null; + integrations_rest_url = null; + default_theme = "dark"; + room_directory.servers = [ "raccoon.college" ]; + setting_defaults.breadcrumbs = false; + jitsi.preferred_domain = "meet.ffmuc.net"; + }; + }; + }; +} -- cgit v1.2.3