about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2018-03-01 21:35:06 -0500
committerShea Levy <shea@shealevy.com>2018-03-01 21:35:06 -0500
commit2802101e9f0598a2e1813a3872b3305af2eb2ea0 (patch)
tree765a3ff5359d881304f38eb12012ca9e2f2d04f0 /nixos
parentc67d4aaf4de503e27bab63f702c5498a1302d467 (diff)
parent4953a006f56f26cdd1b9889cf91d52356dd1320e (diff)
downloadnixlib-2802101e9f0598a2e1813a3872b3305af2eb2ea0.tar
nixlib-2802101e9f0598a2e1813a3872b3305af2eb2ea0.tar.gz
nixlib-2802101e9f0598a2e1813a3872b3305af2eb2ea0.tar.bz2
nixlib-2802101e9f0598a2e1813a3872b3305af2eb2ea0.tar.lz
nixlib-2802101e9f0598a2e1813a3872b3305af2eb2ea0.tar.xz
nixlib-2802101e9f0598a2e1813a3872b3305af2eb2ea0.tar.zst
nixlib-2802101e9f0598a2e1813a3872b3305af2eb2ea0.zip
Merge branch 'dropbear-2018-76-fix'
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/system/boot/initrd-ssh.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/system/boot/initrd-ssh.nix b/nixos/modules/system/boot/initrd-ssh.nix
index cdeff4845948..8b3dc2d90eb3 100644
--- a/nixos/modules/system/boot/initrd-ssh.nix
+++ b/nixos/modules/system/boot/initrd-ssh.nix
@@ -118,7 +118,7 @@ in
         echo ${escapeShellArg key} >> /root/.ssh/authorized_keys
       '') cfg.authorizedKeys)}
 
-      dropbear -s -j -k -E -m -p ${toString cfg.port} ${optionalString (cfg.hostRSAKey == null && cfg.hostDSSKey == null && cfg.hostECDSAKey == null) "-R"}
+      dropbear -s -j -k -E -p ${toString cfg.port} ${optionalString (cfg.hostRSAKey == null && cfg.hostDSSKey == null && cfg.hostECDSAKey == null) "-R"}
     '';
 
     boot.initrd.secrets =