diff options
author | Ben Sima <ben@bsima.me> | 2025-06-02 08:16:44 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2025-06-13 11:19:37 -0400 |
commit | 06e7942054840c63a2a33c47ff7179607e5ff6ce (patch) | |
tree | 5a24c7a17661134461570adfa48a84c1dd90637e | |
parent | a0b776e29d8866329c87108f573a985e64f2ba2e (diff) |
Fix admin xmpp username
This was the old username.
-rw-r--r-- | Omni/Cloud/Comms/Xmpp.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Omni/Cloud/Comms/Xmpp.nix b/Omni/Cloud/Comms/Xmpp.nix index 93d7cfc..e48dd56 100644 --- a/Omni/Cloud/Comms/Xmpp.nix +++ b/Omni/Cloud/Comms/Xmpp.nix @@ -32,7 +32,7 @@ in { # this is necessary bc prosody needs access to the acme certs managed in Omni/Cloud/Web.nix, when # i learn how to use security.acme better, and use separate certs, then i can fix this group group = "nginx"; - admins = ["bsima@${rootDomain}"]; + admins = ["ben@${rootDomain}"]; allowRegistration = true; inherit ssl; uploadHttp = { |