mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-14 04:07:18 +00:00
11 lines
194 B
Nix
11 lines
194 B
Nix
|
{...}: {
|
||
|
services.openssh = {
|
||
|
enable = true;
|
||
|
settings = {
|
||
|
PermitRootLogin = "prohibit-password";
|
||
|
PasswordAuthentication = false;
|
||
|
X11Forwarding = false;
|
||
|
};
|
||
|
};
|
||
|
}
|