From 5e02cdc7ed82ac10375cacfca6920f20f5729059 Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Thu, 13 Feb 2025 00:29:25 -0800 Subject: Add vps capabilities --- nix/modules/conduit.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 nix/modules/conduit.nix (limited to 'nix/modules/conduit.nix') diff --git a/nix/modules/conduit.nix b/nix/modules/conduit.nix new file mode 100644 index 0000000..954e5fc --- /dev/null +++ b/nix/modules/conduit.nix @@ -0,0 +1,12 @@ +{ config, lib, ... }: +{ + services.matrix-conduit = { + enable = lib.mkDefault config.monorepo.profiles.server.enable; + # random comment + settings.global = { + server_name = "matrix.ret2pop.net"; + address = "0.0.0.0"; + port = 6167; + }; + }; +} -- cgit