infrastructure/hosts/hydrogen/system/ssh/default.nix

8 lines
122 B
Nix

{...}: {
services.openssh = {
enable = true;
settings.PasswordAuthentication = false;
ports = [624];
};
}