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