16 lines
230 B
Nix
16 lines
230 B
Nix
{ ... }:
|
|
|
|
{
|
|
services = {
|
|
ssh-agent = { enable = true; };
|
|
openssh = {
|
|
enable = true;
|
|
settings = {
|
|
PasswordAuthentication = false;
|
|
PermitRootLogin = "prohibit-password";
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|