Was that just totally irrelevant?

This commit is contained in:
niten 2021-10-15 10:42:32 -07:00
parent b3258ad8a2
commit 9b3333616d

View File

@ -47,10 +47,7 @@ in {
kernelParams = [ kernelParams = [
"ip=${ip}" "ip=${ip}"
]; ];
initrd = let initrd = {
host-key-pkg = host-keys.${config.instance.hostname};
host-privkey = builtins.toPath "${host-key-pkg}/${key-filename}";
in {
network = { network = {
enable = true; enable = true;
@ -63,8 +60,7 @@ in {
port = 22; port = 22;
authorizedKeys = admin-ssh-keys; authorizedKeys = admin-ssh-keys;
hostKeys = [ hostKeys = [
(builtins.trace config.fudo.secrets.host-secrets.${hostname}.initrd-ssh-host-key.target-file config.fudo.secrets.host-secrets.${hostname}.initrd-ssh-host-key.target-file
config.fudo.secrets.host-secrets.${hostname}.initrd-ssh-host-key.target-file)
]; ];
}; };
}; };