hippocampus: enable registration

This commit is contained in:
2026-02-12 01:18:32 -05:00
parent bf8edd371d
commit a014a172a3

View File

@@ -1,4 +1,7 @@
{ config, pkgs, lib, ... }: {
sops.secrets.tuwunelreg = {
owner = config.services.matrix-tuwunel.user;
};
services.matrix-tuwunel = {
enable = true;
stateDirectory = "tuwunel";
@@ -12,6 +15,11 @@
server_name = "glia.club";
allow_federation = false;
allow_encryption = true;
new_user_displayname_suffix = "🌱";
allow_registration = true;
registration_token_file = config.sops.secrets.tuwunelreg.path;
};
};
};