mirror of
https://github.com/callumio/nixfiles.git
synced 2026-08-06 20:49:17 +01:00
11 lines
194 B
Nix
11 lines
194 B
Nix
{ ... }:
|
|
{
|
|
services.openssh = {
|
|
enable = true;
|
|
settings = {
|
|
PasswordAuthentication = true;
|
|
KbdInteractiveAuthentication = true;
|
|
PermitRootLogin = "no";
|
|
};
|
|
};
|
|
}
|