initial commit

This commit is contained in:
Callum Leslie 2024-08-30 12:50:02 +01:00
commit c45c7f26a4
Signed by: cleslie
GPG key ID: D382C4AFEECEAA90
28 changed files with 1531 additions and 0 deletions

15
hosts/hermes/ssh.nix Normal file
View file

@ -0,0 +1,15 @@
{
services = {
openssh = {
enable = true;
ports = [62480];
settings.PasswordAuthentication = false;
settings.PermitRootLogin = "no";
};
endlessh-go = {
enable = true;
port = 22;
openFirewall = true;
};
};
}