ssh
This commit is contained in:
parent
ae00707bb1
commit
9c3a49f82a
9
modules/ssh/default.nix
Normal file
9
modules/ssh/default.nix
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
{ config, inputs, pkgs, ... }:
|
||||||
|
|
||||||
|
{
|
||||||
|
services.openssh = {
|
||||||
|
enable = true;
|
||||||
|
settings.PasswordAuthentication = false;
|
||||||
|
settings.KbdInteractiveAuthentication = false;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue