nixos-config/hosts/chunk/conduwuit.nix
2024-12-22 14:12:25 -05:00

12 lines
255 B
Nix

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