Homelab/networking/ssh.nix
2025-09-26 02:11:47 +00:00

5 lines
115 B
Nix

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