python312Packages.kneaddata: init at 0.7.7-alpha (#340230)
[NixPkgs.git] / nixos / tests / initrd-network-ssh / generate-keys.nix
blobb82a79ce5e2ea84ef8ed019f83c257aa69d77c4f
1 with import ../../.. { };
3 runCommand "gen-keys"
4   {
5     buildInputs = [ openssh ];
6   }
7   ''
8     mkdir $out
9     ssh-keygen -q -t ed25519 -N "" -f $out/ssh_host_ed25519_key
10     ssh-keygen -q -t ed25519 -N "" -f $out/id_ed25519
11   ''