adyya-flake/services/social/conduwuit.mod.nix
Ittihadyya f4e7a44e64
Some checks are pending
/ Check formatting (push) Waiting to run
try this?
2025-01-13 15:08:46 +02:00

21 lines
504 B
Nix

{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 = [8448];
# database_path = lib.mkForce "/var/services/conduwuit/";
};
};
})
];
}