summary refs log tree commit diff
path: root/nixos/modules/services/networking/ssh
diff options
context:
space:
mode:
authoradisbladis <adisbladis@gmail.com>2020-03-15 01:21:38 +0000
committerGitHub <noreply@github.com>2020-03-15 01:21:38 +0000
commitc00777042f01d0d4e920ee08275165cef6ff4406 (patch)
tree953087afc8aac017c7949a67688e3f8b5f42bd6e /nixos/modules/services/networking/ssh
parentd15090dbe6f538e3dafca625bdc9ab1b5542f55d (diff)
parentf5951f520c6b832be55917d8a69b9126c7e28f5b (diff)
downloadnixpkgs-c00777042f01d0d4e920ee08275165cef6ff4406.tar
nixpkgs-c00777042f01d0d4e920ee08275165cef6ff4406.tar.gz
nixpkgs-c00777042f01d0d4e920ee08275165cef6ff4406.tar.bz2
nixpkgs-c00777042f01d0d4e920ee08275165cef6ff4406.tar.lz
nixpkgs-c00777042f01d0d4e920ee08275165cef6ff4406.tar.xz
nixpkgs-c00777042f01d0d4e920ee08275165cef6ff4406.tar.zst
nixpkgs-c00777042f01d0d4e920ee08275165cef6ff4406.zip
Merge pull request #82620 from aanderse/ssh-silent
nixos/ssh: silence ssh-keygen during configuration validation
Diffstat (limited to 'nixos/modules/services/networking/ssh')
-rw-r--r--nixos/modules/services/networking/ssh/sshd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/ssh/sshd.nix b/nixos/modules/services/networking/ssh/sshd.nix
index 0664b5540d9..464e9ed38c4 100644
--- a/nixos/modules/services/networking/ssh/sshd.nix
+++ b/nixos/modules/services/networking/ssh/sshd.nix
@@ -17,7 +17,7 @@ let
     ${cfg.extraConfig}
     EOL
 
-    ssh-keygen -f mock-hostkey -N ""
+    ssh-keygen -q -f mock-hostkey -N ""
     sshd -t -f $out -h mock-hostkey
   '';