HermitCollective.nix/system/ssh.nix

12 lines
213 B
Nix
Raw Normal View History

2024-03-06 09:25:15 +00:00
{ # Enable and configure openssh
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
PermitRootLogin = "no";
X11Forwarding = false;
};
};
}