10 lines
179 B
Nix
10 lines
179 B
Nix
{
|
|
services.openssh = {
|
|
enable = true;
|
|
settings = {
|
|
PasswordAuthentication = false;
|
|
AllowUsers = ["quadradical"];
|
|
PermitRootLogin = "no";
|
|
};
|
|
};
|
|
}
|