nixos-systems/modules/system/openssh.nix
Eli Ribble a31e1dfe88 Add commented-out port specification for openssh
May be handy at some future point for getting around intermediate
firewalls
2025-07-23 00:16:22 +00:00

9 lines
116 B
Nix

{ config, configFiles, lib, pkgs, ... }:
{
services.openssh = {
enable = true;
# ports = [ 22 16652 ];
};
}