This commit is contained in:
joygnu 2024-06-20 14:37:32 +02:00
parent 75c4f482d0
commit dd6ac33f2b

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;
};
}