From 72cc84f1dcdcdf69f611aefbce613593dc5dce7c Mon Sep 17 00:00:00 2001 From: Ittihadyya Date: Mon, 13 Jan 2025 14:52:33 +0200 Subject: [PATCH] git rename blunder --- services/social/conduwuit.mod.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 services/social/conduwuit.mod.nix diff --git a/services/social/conduwuit.mod.nix b/services/social/conduwuit.mod.nix new file mode 100644 index 0000000..e14b963 --- /dev/null +++ b/services/social/conduwuit.mod.nix @@ -0,0 +1,21 @@ +{conduwuit, ...}: { + glucose.modules = [ + ({ + lib, + config, + ... + }: { + services.conduwuit = { + enable = true; + package = conduwuit.packages.x86_64-linux.default; + settings.global = { + server_name = "collective-conciousness.monster"; + max_request_size = 1024 * 1024 * 1024; + address = ["127.0.0.1"]; + port = [7893]; + # database_path = lib.mkForce "/var/services/conduwuit/"; + }; + }; + }) + ]; +}