Homelab/modules/networking/ssh.nix
2025-10-04 00:49:49 +00:00

5 lines
115 B
Nix

{ config, lib, pkgs, ... }: {
services.openssh.enable = true;
networking.firewall.allowedTCPPorts = [ 22 ];
}