fix(ssh): Add port back for marleynet

This commit is contained in:
punkfairie 2025-03-09 12:33:06 -07:00
parent 2b4b8fd2e9
commit bc921ec108
Signed by: punkfairie
GPG key ID: B3C5488E9A1A7CA6
2 changed files with 6 additions and 1 deletions

View file

@ -22,6 +22,7 @@ in {
"marleynet" = {
hostname = "10.69.69.2";
port = 222;
identityFile = "%d/.ssh/%r@marleynet";
};
};

View file

@ -18,8 +18,12 @@ in {
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM+hMOzQBPmi6Rjw7fYvwn43w1Dgk+GEooGPnQz2RTcK Generated By Termius"
];
root.openssh.authorizedKeys.keys = [];
root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIPWzW2E6j4eLNPYTmxZGzOXHwlEdTATu6Q9sk/zJBAmE marley@nyx"
];
};
services.openssh.ports = [222];
system.stateVersion = "24.05";
}