8 lines
122 B
Nix
8 lines
122 B
Nix
{...}: {
|
|
services.openssh = {
|
|
enable = true;
|
|
settings.PasswordAuthentication = false;
|
|
ports = [624];
|
|
};
|
|
}
|