12 lines
225 B
Nix
12 lines
225 B
Nix
{
|
|
services.openssh = {
|
|
enable = true;
|
|
ports = [];
|
|
openFirewall = false;
|
|
settings = {
|
|
PermitRootLogin = "no";
|
|
PasswordAuthentication = false;
|
|
};
|
|
};
|
|
}
|