diff options
| author | Jakub Stachurski <jakub@wilkuu.xyz> | 2026-02-18 13:36:43 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-18 13:36:43 +0100 |
| commit | bdb6c4b4f76b5169021864a7116e6f70159aaf5e (patch) | |
| tree | b7d120b8c0b630f94071aceb5164486b3aec5551 /hosts | |
| parent | d0a6e83fbdb79db022d6f5058aec0854eeff6647 (diff) | |
Continuwuity on omega-relay (#4)
* Initial setup for c10y
* Fix .well-known location and add comments.
Typing is hard, and well_known should be well-known.
Also fixes this in stalwart.
* Nixfmt
* Use c10y straight from the source
Diffstat (limited to 'hosts')
| -rw-r--r-- | hosts/omega-relay/default.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/hosts/omega-relay/default.nix b/hosts/omega-relay/default.nix index 95e03e4..9ec806d 100644 --- a/hosts/omega-relay/default.nix +++ b/hosts/omega-relay/default.nix @@ -16,6 +16,7 @@ ../../services/uptimekuma.nix ../../services/freshrss.nix ../../services/wakapi.nix + ../../services/continuwuity.nix ]; addons = { @@ -46,6 +47,18 @@ domain = if isVM then "mail.omega-relay.local" else "mail.wilkuu.xyz"; doACME = !isVM; }; + continuwuity = { + enable = true; + allowRegistration = false; + allowFederation = !isVM; + trustedServers = [ + "matrix.org" + "utwente.io" + ]; + fdqn = if isVM then "omega-relay.local" else "wilkuu.xyz"; + host-domain = if isVM then "matrix.omega-relay.local" else "matrix.wilkuu.xyz"; + doACME = !isVM; + }; vaultwarden = { enable = true; |
