diff --git a/modules/system/openssh.nix b/modules/system/openssh.nix index d35e98c..880aa80 100644 --- a/modules/system/openssh.nix +++ b/modules/system/openssh.nix @@ -1,5 +1,9 @@ { config, configFiles, lib, pkgs, ... }: { - services.openssh.enable = true; + services.openssh = { + enable = true; + # ports = [ 22 16652 ]; + }; + }