1
0
Fork 0

nixops: disallow user SSH keys

This commit is contained in:
Sébastien Bourdeauducq 2024-06-02 14:04:02 +08:00
parent bd6c61094f
commit d91ff8300d
2 changed files with 2 additions and 0 deletions

View File

@ -93,6 +93,7 @@ in
services.avscan.enable = true;
services.openssh.enable = true;
services.openssh.authorizedKeysInHomedir = false;
services.openssh.settings.PasswordAuthentication = false;
services.openssh.extraConfig =
''

View File

@ -24,6 +24,7 @@ in
};
services.openssh.enable = true;
services.openssh.authorizedKeysInHomedir = false;
services.openssh.settings.PasswordAuthentication = false;
services.openssh.settings.GatewayPorts = "clientspecified";
services.openssh.extraConfig =