This commit is contained in:
joy 2024-06-20 14:37:32 +02:00
parent ae00707bb1
commit 9c3a49f82a

9
modules/ssh/default.nix Normal file
View file

@ -0,0 +1,9 @@
{ config, inputs, pkgs, ... }:
{
services.openssh = {
enable = true;
settings.PasswordAuthentication = false;
settings.KbdInteractiveAuthentication = false;
};
}