nix-config/hosts/vps/modules/services/openssh.nix
lightly-toasted 89d86413dd feat(vps): enable Tailscale SSH
- Remove port 22 from firewall
- Add --ssh to tailscale up flags
2025-11-18 16:12:17 +09:00

10 lines
184 B
Nix

{
services.openssh = {
enable = true;
openFirewall = false;
settings = {
PasswordAuthentication = false;
PermitRootLogin = "prohibit-password";
};
};
}