Initial clean commit

This commit is contained in:
randogoth 2026-02-05 17:57:02 +02:00
commit 1862821f8f
15 changed files with 1240 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ ... }:
{
services.openssh.enable = true;
services.openssh.settings = {
PermitRootLogin = "no";
PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
AllowTcpForwarding = "no";
X11Forwarding = false;
UseDns = false;
MaxAuthTries = 3;
};
}