diff options
| -rw-r--r-- | modules/users/defin.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/users/defin.nix b/modules/users/defin.nix index b9c46f9..ae0f04e 100644 --- a/modules/users/defin.nix +++ b/modules/users/defin.nix @@ -24,5 +24,8 @@ nix.settings.allowed-users = [ "defin" ]; # I can't think of a better spot to put this rn. - services.openssh.settings.PasswordAuthentication = false; + services.openssh = { + ports = [ 22 2200 ]; # needed because isp blocks ssh over 22 + settings.PasswordAuthentication = false; + }; }
\ No newline at end of file |
