10 lines
192 B
Nix
10 lines
192 B
Nix
{
|
|
services.openssh = {
|
|
enable = true;
|
|
settings = {
|
|
PasswordAuthentication = true; # TODO: False
|
|
AllowUsers = ["quadradical"];
|
|
PermitRootLogin = "no";
|
|
};
|
|
};
|
|
}
|