nixos/server/sshd.nix

22 lines
509 B
Nix
Raw Normal View History

2023-05-17 17:10:18 +01:00
{...}: {
services.openssh = {
enable = true;
ports = [22];
settings = {
UseDns = true;
2023-05-16 12:06:28 +01:00
PermitRootLogin = "no";
PasswordAuthentication = false;
GatewayPorts = "yes";
LogLevel = "VERBOSE";
};
};
services.traefik.dynamicConfigOptions.tcp = {
routers.ssh = {
rule = "ClientIP(`192.168.0.0/16`)";
entryPoints = ["ssh"];
service = "ssh-redirect";
};
services.ssh-redirect.loadBalancer.servers = [{address = "localhost:22";}];
};
}