dotfiles/system/nixos/ssh.nix

11 lines
158 B
Nix

{
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
KbdInteractiveAuthentication = false;
};
};
}