Add commented-out port specification for openssh

May be handy at some future point for getting around intermediate
firewalls
This commit is contained in:
Eli Ribble 2025-07-23 00:16:22 +00:00
parent d29e7f242b
commit a31e1dfe88

View file

@ -1,5 +1,9 @@
{ config, configFiles, lib, pkgs, ... }:
{
services.openssh.enable = true;
services.openssh = {
enable = true;
# ports = [ 22 16652 ];
};
}