10 lines
156 B
Nix
10 lines
156 B
Nix
{pkgs, ...}:
|
|
{
|
|
services.openssh = {
|
|
enable = true;
|
|
settings = {
|
|
PasswordAuthentication = true;
|
|
PermitRootLogin = "yes";
|
|
};
|
|
};
|
|
}
|