10 lines
152 B
Nix
Executable file
10 lines
152 B
Nix
Executable file
{ config, ... }:
|
|
|
|
{
|
|
services.openssh = {
|
|
enable = true;
|
|
startWhenNeeded = true;
|
|
permitRootLogin = "no";
|
|
passwordAuthentication = false;
|
|
};
|
|
}
|