forest/roles/conduit.nix

14 lines
261 B
Nix
Raw Permalink Normal View History

2024-06-29 13:14:47 +00:00
{ pkgs, ... }: {
services.matrix-conduit = {
enable = true;
settings = {
global = {
server_name = "shorks.gay";
database_backend = "rocksdb";
allow_check_for_updates = true;
address = "::";
};
};
};
}