openssh: drop dsaKeysSupport

-2
-2
pkgs/tools/networking/openssh/common.nix
··· 38 38 withPAM ? stdenv.hostPlatform.isLinux, 39 39 # Attempts to mlock the entire sshd process on startup to prevent swapping. 40 40 withLinuxMemlock ? stdenv.hostPlatform.isLinux, 41 - dsaKeysSupport ? false, 42 41 linkOpenssl ? true, 43 42 isNixos ? stdenv.hostPlatform.isLinux, 44 43 }: ··· 108 107 "--with-libedit=yes" 109 108 "--disable-strip" 110 109 (lib.withFeature withPAM "pam") 111 - (lib.enableFeature dsaKeysSupport "dsa-keys") 112 110 ] 113 111 ++ lib.optional (etcDir != null) "--sysconfdir=${etcDir}" 114 112 ++ lib.optional (!withSecurityKey) "--disable-security-key"