add conduwuit but doesnt work yet

This commit is contained in:
cy 2024-12-21 02:59:10 -05:00
parent e5b9d3920b
commit f75ccacd3e
2 changed files with 120 additions and 0 deletions

11
hosts/chunk/conduwuit.nix Normal file
View file

@ -0,0 +1,11 @@
{pkgs, ...}: {
services.conduwuit = {
enable = true;
package = pkgs.callPackage ../../pkgs/conduwuit.nix {};
settings.global = {
port = [ 8448 ];
server_name = "cything.io";
allow_check_for_updates = true;
};
};
}