nixos-configs/hosts/firgu/matrix.nix

100 lines
2.2 KiB
Nix

{ pkgs, ... }:
let extraLegoFlags = [ "--dns.resolvers=8.8.8.8:53" ];
in {
services.matrix-synapse = {
enable = true;
server_name = "within.website";
enable_metrics = true;
url_preview_enabled = true;
max_upload_size = "100M";
enable_registration = true;
listeners = [
{
bind_address = "127.0.0.1";
port = 8448;
type = "http";
tls = false;
x_forwarded = true;
resources = [{
compress = false;
names = [ "client" "federation" ];
}];
}
{
bind_address = "100.77.196.9";
port = 8448;
type = "http";
tls = false;
resources = [{
compress = false;
names = [ "client" "federation" ];
}];
}
{
bind_address = "100.77.196.9";
port = 9000;
type = "metrics";
tls = false;
resources = [ ];
}
];
extraConfig = ''
registration_requires_token: true
'';
};
services.nginx.virtualHosts = {
"matrix.within.website" = {
forceSSL = true;
useACMEHost = "within.website";
locations = {
"/".extraConfig = ''
return 404;
'';
"/_matrix" = { proxyPass = "http://127.0.0.1:8448"; };
};
};
"element.within.website" = {
forceSSL = true;
useACMEHost = "within.website";
root = pkgs.element-web.override {
conf = {
default_server_config."m.homeserver" = {
"base_url" = "https://matrix.within.website";
"server_name" = "within.website";
};
showLabsSettings = true;
};
};
};
};
services.postgresql.enable = true;
services.postgresql.initialScript = pkgs.writeText "synapse-init.sql" ''
CREATE ROLE "matrix-synapse" WITH LOGIN PASSWORD 'synapse';
CREATE DATABASE "matrix-synapse" WITH OWNER "matrix-synapse"
TEMPLATE template0
LC_COLLATE = "C"
LC_CTYPE = "C";
'';
security.acme.certs."within.website" = {
group = "users";
email = "me@christine.website";
dnsProvider = "cloudflare";
credentialsFile = "/srv/within/cf.env";
extraDomainNames = [ "matrix.within.website" "element.within.website" ];
inherit extraLegoFlags;
};
}