nixos-config/hosts/chunk/conduwuit.nix

12 lines
252 B
Nix
Raw Normal View History

2024-12-21 02:59:10 -05:00
{pkgs, ...}: {
services.conduwuit = {
enable = true;
package = pkgs.callPackage ../../pkgs/conduwuit.nix {};
settings.global = {
port = [ 8448 ];
server_name = "cything.io";
allow_check_for_updates = true;
};
};
}