add conduwuit
This commit is contained in:
parent
d8e80933f7
commit
9b6aa48264
3 changed files with 64 additions and 0 deletions
19
hosts/conduwuit/conduwuit.nix
Normal file
19
hosts/conduwuit/conduwuit.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
services.matrix-conduit = {
|
||||
enable = true;
|
||||
package = pkgs.conduwuit;
|
||||
settings = {
|
||||
global = {
|
||||
database_backend = "rocksdb";
|
||||
new_user_displayname_suffix = "";
|
||||
port = 6167;
|
||||
server_name = "oxapentane.com";
|
||||
well_known = {
|
||||
client = "https://oxapentane.com";
|
||||
server = "oxapentane.com:433";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
|
@ -4,6 +4,7 @@ let
|
|||
in
|
||||
{
|
||||
imports = [
|
||||
./conduwuit.nix
|
||||
];
|
||||
sops.defaultSopsFile = ./secrets.yaml;
|
||||
sops.age.sshKeyPaths = [ "/etc/ssh/ssh_host_ed25519_key" ];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue