From f3bc3c2013b4970bd9d04adc42f16552dd7380f8 Mon Sep 17 00:00:00 2001 From: niten Date: Thu, 14 Oct 2021 16:48:35 -0700 Subject: [PATCH] Let's try this again just to verify --- lib/fudo/initrd-network.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/lib/fudo/initrd-network.nix b/lib/fudo/initrd-network.nix index eaddd63..58d5f64 100644 --- a/lib/fudo/initrd-network.nix +++ b/lib/fudo/initrd-network.nix @@ -45,10 +45,6 @@ in { host-key-pkg = host-keys.${config.instance.hostname}; host-privkey = builtins.toPath "${host-key-pkg}/ssh_host_ed25519_key"; in { - secrets = { - "/var/run/ssh-host-key" = host-privkey; - }; - network = { enable = true; @@ -61,7 +57,7 @@ in { port = 22; authorizedKeys = admin-ssh-keys; hostKeys = [ - "/var/run/ssh-host-key" + host-privkey ]; }; };