summaryrefslogtreecommitdiff
path: root/modules/users/defin.nix
diff options
context:
space:
mode:
authorDevin Finlinson <devin.finlinson@pm.me>2026-04-08 09:11:17 -0600
committerDevin Finlinson <devin.finlinson@pm.me>2026-04-08 09:11:17 -0600
commit99779592b303fedb27581c922b7c83a1a756342f (patch)
treee9b1943fda9c22410b3d5d2ee5314ee90de0201b /modules/users/defin.nix
parentf011565c2868f863a36abef12227d14df1f36171 (diff)
fixed port 22 issue
Diffstat (limited to 'modules/users/defin.nix')
-rw-r--r--modules/users/defin.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/users/defin.nix b/modules/users/defin.nix
index 3a614c3..3b26ed2 100644
--- a/modules/users/defin.nix
+++ b/modules/users/defin.nix
@@ -36,7 +36,7 @@
};
# I can't think of a better spot to put this rn.
services.openssh = {
- ports = [ 22 2200 ]; # needed because isp blocks ssh over 22
+ ports = [ 22 ];
settings.PasswordAuthentication = false;
};
}