nixos-config/system/desktop/sshd.nix
2019-10-24 02:24:33 +02:00

8 lines
222 B
Nix

{ config, ... }:
{
# make sure ssh is only available trough the tinc
networking.firewall.extraCommands = ''
iptables -t nat -A PREROUTING ! -i tinc.private -p tcp -m tcp --dport 22 -j REDIRECT --to-ports 0
'';
}