nixos-config/hosts/chunk/conduwuit.nix
2025-01-21 21:56:26 -05:00

12 lines
313 B
Nix

{ inputs, ... }:
{
services.conduwuit = {
enable = true;
package = inputs.conduwuit.packages.x86_64-linux.static-x86_64-linux-musl-all-features-x86_64-haswell-optimised;
settings.global = {
port = [ 8448 ];
server_name = "cything.io";
allow_check_for_updates = true;
};
};
}