bring conduit here

This commit is contained in:
cy 2024-12-17 02:39:04 -05:00
parent 4fc952c732
commit edbf958227
2 changed files with 41 additions and 0 deletions

40
hosts/chunk/conduit.nix Normal file
View file

@ -0,0 +1,40 @@
{
pkgs,
config,
...
}: {
virtualisation.oci-containers.containers.conduit = {
image = "matrixconduit/matrix-conduit:latest";
autoStart = true;
ports = ["127.0.0.1:8448:8448"];
pull = "newer";
environment = {
CONDUIT_SERVER_NAME = "cything.io";
CONDUIT_DATABASE_PATH = "/var/lib/matrix-conduit/";
CONDUIT_DATABASE_BACKEND = "rocksdb";
CONDUIT_PORT = "8448";
CONDUIT_MAX_REQUEST_SIZE = "20000000"; # in bytes ~20MB
CONDUIT_ALLOW_REGISTRATION = "false";
CONDUIT_ALLOW_FEDERATION = "true";
CONDUIT_ALLOW_CHECK_FOR_UPDATES = "true";
CONDUIT_TRUSTED_SERVERS = ''["matrix.org"]'';
CONDUIT_ADDRESS = "0.0.0.0";
CONDUIT_CONFIG = "";
};
volumes = [
"/opt/conduit/db:/var/lib/matrix-conduit/"
];
networks = ["conduit-net"];
};
systemd.services.create-conduit-net = {
serviceConfig.Type = "oneshot";
wantedBy = with config.virtualisation.oci-containers; [
"${backend}-conduit.service"
];
script = ''
${pkgs.podman}/bin/podman network exists conduit-net || \
${pkgs.podman}/bin/podman network create conduit-net
'';
};
}

View file

@ -22,6 +22,7 @@
./grafana.nix ./grafana.nix
./tor.nix ./tor.nix
./ghost.nix ./ghost.nix
./conduit.nix
]; ];
sops.age.keyFile = "/root/.config/sops/age/keys.txt"; sops.age.keyFile = "/root/.config/sops/age/keys.txt";