This repository has been archived on 2024-08-30. You can view files and clone it, but cannot push or open issues or pull requests.
infrastructure/hosts/pink/services/endlessh.nix
2024-05-29 17:15:20 +02:00

18 lines
298 B
Nix

{ pkgs, ... }: {
services.endlessh-go = {
enable = true;
extraOptions = [
"-max_clients=200"
"-geoip_supplier=ip-api"
];
port = 2333;
openFirewall = true;
prometheus = {
enable = true;
port = 4212;
listenAddress = "127.0.0.1";
};
};
}