dot_testing/boxes/netbox/sslh.nix

23 lines
386 B
Nix

{ lib, config, pkgs, ... }:
{
services.sslh = {
enable = true;
settings = {
protocols = [
{
host = "localhost";
name = "ssh";
port = "55555";
service = "ssh";
}
{
host = "localhost";
name = "tls";
port = "442";
}
];
transparent = true;
};
};
}