Nix flake update; disable password auth in SSH

This commit is contained in:
2024-08-29 13:17:19 -05:00
parent 06c4c7bc13
commit 83e4dd2ea7
2 changed files with 6 additions and 3 deletions

View File

@ -1,6 +1,9 @@
{ ... }: {
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
};
};
security = {