Switch to conduwuit
This commit is contained in:
parent
582602fe82
commit
32e433123c
1 changed files with 10 additions and 5 deletions
|
@ -2,9 +2,10 @@
|
|||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}: {
|
||||
containers.conduit = {
|
||||
containers.conduit-stranger-systems = {
|
||||
autoStart = true;
|
||||
privateNetwork = true;
|
||||
hostAddress = "192.168.100.10";
|
||||
|
@ -17,6 +18,7 @@
|
|||
isReadOnly = false;
|
||||
};
|
||||
};
|
||||
nixpkgs = inputs.nixpkgs-unstable.outPath;
|
||||
config = {
|
||||
config,
|
||||
lib,
|
||||
|
@ -24,13 +26,16 @@
|
|||
...
|
||||
}: {
|
||||
# Conduit proper
|
||||
services.matrix-conduit = {
|
||||
services.conduwuit = {
|
||||
enable = true;
|
||||
settings.global = {
|
||||
server_name = "stranger.systems";
|
||||
allow_registration = false;
|
||||
port = 6167;
|
||||
address = "0.0.0.0";
|
||||
rocksdb_optimize_for_spinning_disks = true;
|
||||
new_user_displayname_suffix = "";
|
||||
allow_registration = true;
|
||||
registration_token_file = "/var/lib/conduwuit/reg_token";
|
||||
port = [6167];
|
||||
address = ["0.0.0.0"];
|
||||
};
|
||||
};
|
||||
# Open the port
|
||||
|
|
Loading…
Add table
Reference in a new issue