about summary refs log tree commit diff
path: root/nixos/modules/programs
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-04-01 15:52:59 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-04-01 15:54:52 +0200
commit3fb170842736c9c3c10cd53675f98aa3912bf6ad (patch)
tree73863bc5263a6d446b669cb991360545b9da3bf4 /nixos/modules/programs
parent882d0b35b8392b516e5cd42b9292f245ef693a6c (diff)
downloadnixlib-3fb170842736c9c3c10cd53675f98aa3912bf6ad.tar
nixlib-3fb170842736c9c3c10cd53675f98aa3912bf6ad.tar.gz
nixlib-3fb170842736c9c3c10cd53675f98aa3912bf6ad.tar.bz2
nixlib-3fb170842736c9c3c10cd53675f98aa3912bf6ad.tar.lz
nixlib-3fb170842736c9c3c10cd53675f98aa3912bf6ad.tar.xz
nixlib-3fb170842736c9c3c10cd53675f98aa3912bf6ad.tar.zst
nixlib-3fb170842736c9c3c10cd53675f98aa3912bf6ad.zip
ssh: Fix support for ssh-dss host keys
Diffstat (limited to 'nixos/modules/programs')
-rw-r--r--nixos/modules/programs/ssh.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/programs/ssh.nix b/nixos/modules/programs/ssh.nix
index 1ad45f468030..cc835081c9f9 100644
--- a/nixos/modules/programs/ssh.nix
+++ b/nixos/modules/programs/ssh.nix
@@ -189,6 +189,7 @@ in
 
         # Allow DSA keys for now. (These were deprecated in OpenSSH 7.0.)
         PubkeyAcceptedKeyTypes +ssh-dss
+        HostKeyAlgorithms +ssh-dss
 
         ${cfg.extraConfig}
       '';