nixos-systems/modules/system/openssh.nix

9 lines
114 B
Nix

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