nixos-config/system/desktop/sshd.nix
2021-03-05 17:42:00 +01:00

6 lines
256 B
Nix

{ config, ... }: {
# make sure ssh is only available trough the tinc
networking.firewall.extraCommands = ''
iptables --table nat --append PREROUTING ! --in-interface tinc.+ --protocol tcp --match tcp --dport 22 --jump REDIRECT --to-ports 0
'';
}