Remove Suricata/ELK; add SSH key auth and disable password login

Adds authorised keys for FredOS-Gaming and phone. Disables SSH password
authentication on FredOS-Mediaserver — key auth only going forward.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
ediblerope 2026-04-06 21:48:08 +01:00
parent ddb208b95d
commit 39450ca786
5 changed files with 8 additions and 173 deletions

View file

@ -28,7 +28,10 @@
networking.firewall.allowedTCPPorts = [ 22 ];
services.openssh = {
enable = true;
settings.PermitRootLogin = "no";
settings = {
PermitRootLogin = "no";
PasswordAuthentication = false;
};
};
};
}