Enable ssh for host key generation.

This commit is contained in:
Joseph Hanson 2024-04-29 09:21:20 -05:00
parent 60b72e5595
commit f16e385288
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o

View file

@ -128,4 +128,11 @@
};
wantedBy = [ "default.target" ];
};
# Enable the OpenSSH daemon.
services.openssh = {
enable = true;
settings.PasswordAuthentication = false;
settings.KbdInteractiveAuthentication = false;
};
}