mirror of
https://github.com/callumio/nixfiles.git
synced 2025-12-17 11:39:19 +00:00
10 lines
185 B
Nix
10 lines
185 B
Nix
{
|
|
services.openssh = {
|
|
enable = true;
|
|
settings = {
|
|
PasswordAuthentication = true;
|
|
KbdInteractiveAuthentication = true;
|
|
PermitRootLogin = "no";
|
|
};
|
|
};
|
|
}
|