feat(amy): add matrix conduit

This commit is contained in:
Ashhhleyyy 2024-06-29 14:14:47 +01:00
parent 75f0d7cb15
commit 5979b99679
Signed by: ash
GPG key ID: 83B789081A0878FB
2 changed files with 14 additions and 0 deletions

View file

@ -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
View 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 = "::";
};
};
};
}