nixos-config/hosts/chunk/conduwuit.nix

13 lines
255 B
Nix
Raw Normal View History

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