infrastructure/nixos/hosts/olympus/synapse/configuration.nix

119 lines
3.3 KiB
Nix
Raw Normal View History

2022-07-28 12:36:55 +02:00
# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running nixos-help).
{ config, pkgs, ... }:
2022-07-28 14:23:32 +02:00
let
vs = config.vault-secrets.secrets;
port = 8008;
2022-07-29 13:02:03 +02:00
metricsPort = 9000;
2022-07-28 14:23:32 +02:00
in
2022-07-28 12:36:55 +02:00
{
imports = [ ];
# This value determines the NixOS release from which the default
# settings for stateful data, like file locations and database versions
# on your system were taken. Its perfectly fine and recommended to leave
# this value at the release version of the first install of this system.
# Before changing this value read the documentation for this option
# (e.g. man configuration.nix or on https://nixos.org/nixos/options.html).
system.stateVersion = "22.11"; # Did you read the comment?
# Additional packages
environment.systemPackages = with pkgs; [ ];
2022-07-29 13:02:03 +02:00
networking.firewall.allowedTCPPorts = [ port metricsPort ];
2022-07-28 14:23:32 +02:00
vault-secrets.secrets.synapse = {
user = "matrix-synapse";
group = "matrix-synapse";
services = [ "matrix-synapse" ];
2022-07-28 17:01:28 +02:00
};
2022-07-28 14:23:32 +02:00
services.postgresql = {
enable = true;
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";
'';
};
2022-09-25 23:49:26 +02:00
services.matrix-synapse = {
enable = true;
withJemalloc = true;
2022-07-28 14:23:32 +02:00
2022-09-25 23:49:26 +02:00
extraConfigFiles = [
"${vs.synapse}/macaroon_secret_key"
"${vs.synapse}/registration_shared_secret"
"${vs.synapse}/form_secret"
"${vs.synapse}/turn_shared_secret"
"${vs.synapse}/email_password" # Also contains the rest of the email config
];
2022-07-28 14:23:32 +02:00
2022-09-25 23:49:26 +02:00
settings =
let log_file = pkgs.writeText "log.yml" ''
version: 1
formatters:
structured:
class: synapse.logging.TerseJsonFormatter
handlers:
file:
class: logging.handlers.TimedRotatingFileHandler
formatter: structured
filename: /var/lib/matrix-synapse/synapse.log
when: midnight
backupCount: 3 # Does not include the current log file.
encoding: utf8
loggers:
synapse:
level: INFO
handlers: [file]
''; in
2022-09-25 23:49:26 +02:00
{
server_name = "meowy.tech";
enable_registration = true;
public_baseurl = "https://chat.meowy.tech";
enable_metrics = true;
max_upload_size = "100M";
registration_requires_token = true;
media_retention = {
remote_media_lifetime = "90d";
2022-07-28 17:01:28 +02:00
};
log_config = "${log_file}";
2022-09-25 23:49:26 +02:00
listeners = [
{
inherit port;
bind_addresses = [ "0.0.0.0" ];
type = "http";
tls = false;
x_forwarded = true;
resources = [
{
names = [ "client" "federation" ];
compress = true;
}
];
}
{
port = metricsPort;
bind_addresses = [ "0.0.0.0" ];
type = "metrics";
tls = false;
resources = [
{
names = [ "metrics" ];
compress = false;
}
];
}
];
};
};
2022-07-28 12:36:55 +02:00
}