enable ssh for shodan

This commit is contained in:
Lillian Violet 2025-11-19 20:27:32 +01:00
parent 6a43eb6acb
commit adf6f74200

View file

@ -78,6 +78,15 @@
xdg.portal.extraPortals = [pkgs.kdePackages.xdg-desktop-portal-kde];
services = {
openssh = {
enable = true;
settings = {
# require public key authentication for better security
PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
PermitRootLogin = "no";
};
};
displayManager = {
# defaultSession = "plasma";
sddm.wayland.enable = lib.mkForce true;