feat(amy): add matrix conduit
This commit is contained in:
parent
75f0d7cb15
commit
5979b99679
2 changed files with 14 additions and 0 deletions
|
@ -143,6 +143,7 @@
|
|||
modules = [
|
||||
overlays-module
|
||||
./hosts/amy/configuration.nix
|
||||
./roles/conduit.nix
|
||||
./roles/coredns
|
||||
./roles/iceshrimp.nix
|
||||
./roles/podman.nix
|
||||
|
|
13
roles/conduit.nix
Normal file
13
roles/conduit.nix
Normal file
|
@ -0,0 +1,13 @@
|
|||
{ pkgs, ... }: {
|
||||
services.matrix-conduit = {
|
||||
enable = true;
|
||||
settings = {
|
||||
global = {
|
||||
server_name = "shorks.gay";
|
||||
database_backend = "rocksdb";
|
||||
allow_check_for_updates = true;
|
||||
address = "::";
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue