From ed6f40ba40b4e922c60fd26dba0194353be23df3 Mon Sep 17 00:00:00 2001 From: atlas Date: Tue, 2 Jun 2026 09:25:08 +0200 Subject: [PATCH] fix(#1061): suppress tuwunel default displayname suffix MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Tuwunel 1.6.1 appends " 💕" to every new user's display name via the new_user_displayname_suffix config option. Set it to empty string so agent and operator matrix accounts get clean names. Existing users (atlas, mara, root) need a one-time display name reset. Atlas's was already corrected via the client API. --- nix/modules/hive-matrix.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/nix/modules/hive-matrix.nix b/nix/modules/hive-matrix.nix index 23c5ab81..9a6ddf9c 100644 --- a/nix/modules/hive-matrix.nix +++ b/nix/modules/hive-matrix.nix @@ -359,6 +359,9 @@ in registration_token_file = "/run/credentials/tuwunel.service/registration_token"; # E2EE disabled in initial rollout; tracked in the issue tracker. allow_encryption = false; + # Tuwunel's default suffix is " 💕" — suppress it so agent + # display names are clean (just the agent name, no emoji). + new_user_displayname_suffix = ""; }; }; # Keeps DynamicUser=true + PrivateUsers=true intact — no