From c644b8a006dd28f17082d84fa23167de3143fcab Mon Sep 17 00:00:00 2001 From: Lillian-Violet Date: Mon, 22 Jan 2024 14:20:16 +0100 Subject: [PATCH] Remove the acme things too --- .../package-configs/conduit/configuration.nix | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/nixos/server/package-configs/conduit/configuration.nix b/nixos/server/package-configs/conduit/configuration.nix index ebf6096..309b941 100644 --- a/nixos/server/package-configs/conduit/configuration.nix +++ b/nixos/server/package-configs/conduit/configuration.nix @@ -17,22 +17,6 @@ # root domain. This configuration also assumes this is all running on a single # machine, some tweaks will need to be made if this is not the case. matrix_hostname = "${server_name}"; - - # Build a dervation that stores the content of `${server_name}/.well-known/matrix/server` - well_known_server = pkgs.writeText "well-known-matrix-server" '' - { - "m.server": "${matrix_hostname}" - } - ''; - - # Build a dervation that stores the content of `${server_name}/.well-known/matrix/client` - well_known_client = pkgs.writeText "well-known-matrix-client" '' - { - "m.homeserver": { - "base_url": "https://${matrix_hostname}" - } - } - ''; in { # Configure Conduit itself services.matrix-conduit = {