ssh: only allow ssh on wireguard interface
All checks were successful
Flake checks / Check (pull_request) Successful in 8m16s

This commit is contained in:
Benjamin Yule Bädorf 2024-04-05 13:05:45 +02:00
parent f7eaef0d18
commit b1519c8f22
Signed by: b12f
GPG key ID: 729956E1124F8F26

View file

@ -1,6 +1,10 @@
{ pkgs, ... }: {
{ pkgs, lib, ... }: {
# Don't expose SSH via public interfaces
networking.firewall.interfaces.wg-ssh.allowedTCPPorts = [ 22 ];
services.openssh = {
enable = true;
openFirewall = lib.mkDefault false;
settings = {
PermitRootLogin = "prohibit-password";
PasswordAuthentication = false;