diff options
author | sefidel <contact@sefidel.net> | 2023-11-12 07:13:05 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-11-12 17:12:53 +0900 |
commit | f95d10410cefbf69f2632067321125d564e83ffe (patch) | |
tree | d59a8a3c67680d0cb726f62ddff244c2d46e2424 /modules | |
parent | d1e2c2db07cb37a85ab5c7705c1d4a96d8a65f91 (diff) | |
download | infra-f95d10410cefbf69f2632067321125d564e83ffe.tar.gz infra-f95d10410cefbf69f2632067321125d564e83ffe.zip |
chore(modules/matrix-homeserver): cleanup dendrite
Diffstat (limited to 'modules')
-rw-r--r-- | modules/services/matrix-homeserver.nix | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/modules/services/matrix-homeserver.nix b/modules/services/matrix-homeserver.nix index 12befb9..d658fdf 100644 --- a/modules/services/matrix-homeserver.nix +++ b/modules/services/matrix-homeserver.nix @@ -26,7 +26,6 @@ in secrets = { matrix-server-key = mkOption { type = types.str; description = "path to the server key"; }; matrix-shared-secret = mkOption { type = types.str; description = "path to the registration shared secret"; }; - dendrite-envs = mkOption { type = types.nullOr types.str; description = "path for the environment file to source"; }; extra-config-path = mkOption { type = types.nullOr types.str; description = "path to the extra configuration file to source"; }; sliding-sync-secret = mkOption { type = types.nullOr types.str; description = "path to the sliding sync secret"; }; }; @@ -111,8 +110,7 @@ in environmentFile = cfg.secrets.sliding-sync-secret; }; }; - ###################################### SYNAPSE END ############################## - # Adapted from Mic92/dotfiles, (C) 2021 Jörg Thalheim (MIT) + services.prometheus.scrapeConfigs = [ { job_name = "synapse"; |