adyya-flake/services/social/conduit.mod.nix
Ittihadyya 2b7f9fc73f
Some checks are pending
/ Check formatting (push) Waiting to run
fuck me, i guess
2025-01-13 14:51:27 +02:00

21 lines
481 B
Nix

{conduwuit, ...}: {
glucose.modules = [
({
lib,
config,
...
}: {
services.conduwuit = {
enable = true;
package = conduwuit.packages.x86_64-linux.default;
settings.global = {
server_name = "noosphere";
max_request_size = 1024 * 1024 * 1024;
address = ["127.0.0.1"];
port = [7893];
# database_path = lib.mkForce "/var/services/conduwuit/";
};
};
})
];
}