mirror of
https://github.com/smg1024/homelab.git
synced 2026-05-22 20:32:58 +09:00
13 lines
198 B
Nix
13 lines
198 B
Nix
{ ... }:
|
|
|
|
{
|
|
services.openssh = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
PasswordAuthentication = false;
|
|
KbdInteractiveAuthentication = false;
|
|
PermitRootLogin = "no";
|
|
};
|
|
};
|
|
}
|