services: openssh: disable sftp subsystem for real
All checks were successful
flake / build (push) Successful in 3m9s

Apparently, the default value is `true`, not `false` as I erroneously
assumed. :/

Fixes: 389f345 ("services: openssh: disable sftp subsystem")
Signed-off-by: Christoph Heiss <christoph@c8h4.io>
This commit is contained in:
Christoph Heiss 2024-08-24 17:39:21 +02:00
parent 4bd87669df
commit dfeffdf041
Signed by: c8h4
GPG key ID: 6817E9C75C0785D7

View file

@ -1,6 +1,7 @@
{
services.openssh = {
enable = true;
allowSFTP = false;
settings = {
KbdInteractiveAuthentication = false;
PasswordAuthentication = false;