This commit is contained in:
parent
dbf6ef98d3
commit
72cc84f1dc
1 changed files with 21 additions and 0 deletions
21
services/social/conduwuit.mod.nix
Normal file
21
services/social/conduwuit.mod.nix
Normal file
|
@ -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/";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
})
|
||||||
|
];
|
||||||
|
}
|
Loading…
Reference in a new issue