diff options
| author | Preston Pan <ret2pop@gmail.com> | 2025-03-05 04:18:06 -0800 |
|---|---|---|
| committer | Preston Pan <ret2pop@gmail.com> | 2025-03-05 04:18:06 -0800 |
| commit | ba6373ebfbcafc99ce7a4fa100b2a26fc3bc2731 (patch) | |
| tree | 31675c3c370dc77ce1afe93cfa26b72a2ec4f0b9 /nix/modules/conduit.nix | |
| parent | 0321f74a87df68584beb3c19a99969f9a794bb85 (diff) | |
add two new blog posts; bitcoin node; haskell devel
Diffstat (limited to 'nix/modules/conduit.nix')
| -rw-r--r-- | nix/modules/conduit.nix | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/nix/modules/conduit.nix b/nix/modules/conduit.nix index 623cb7f..ce2c23e 100644 --- a/nix/modules/conduit.nix +++ b/nix/modules/conduit.nix @@ -2,11 +2,15 @@ { services.matrix-conduit = { enable = lib.mkDefault config.monorepo.profiles.server.enable; - # random comment settings.global = { server_name = "matrix.${config.monorepo.vars.remoteHost}"; + trusted_servers = [ + "matrix.org" + "nixos.org" + ]; address = "0.0.0.0"; port = 6167; + allow_registration = true; }; }; } |
