11 lines
149 B
Nix
11 lines
149 B
Nix
{ ... }:
|
|
|
|
{
|
|
services.openssh = {
|
|
enable = true;
|
|
settings.PermitRootLogin = "no";
|
|
extraConfig = ''
|
|
PrintLastLog no
|
|
'';
|
|
};
|
|
}
|