Small SSH hardening on my NixOS server ๐
Uncategorized
1
Posts
1
Posters
0
Views
-
Small SSH hardening on my NixOS server

Before:
services.openssh.enable = true;
Now SSH login is key-only โ
passwords disabled:services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
};
};More security with minimal effort

-
R ActivityRelay shared this topic