10 lines
144 B
Nix
10 lines
144 B
Nix
{...}: {
|
|
services.openssh = {
|
|
enable = true;
|
|
ports = [22 48001];
|
|
settings = {
|
|
PasswordAuthentication = false;
|
|
};
|
|
};
|
|
}
|