Make sure it's really a list of lists
This commit is contained in:
parent
174abdf990
commit
bab995346e
|
@ -83,11 +83,13 @@ n "ip=${initrd-cfg.ip}"
|
|||
})
|
||||
initrd-network-hosts;
|
||||
|
||||
extra-records = concatLists (mapAttrsToList
|
||||
(hostname: hostOpts: map
|
||||
(sshfp: "${hostname} IN SSHFP ${sshfp}")
|
||||
(gen-sshfp-records hostname hostOpts.initrd-network.keypair.public-key))
|
||||
initrd-network-hosts);
|
||||
extra-records = let
|
||||
recs = (mapAttrsToList
|
||||
(hostname: hostOpts: map
|
||||
(sshfp: "${hostname} IN SSHFP ${sshfp}")
|
||||
(gen-sshfp-records hostname hostOpts.initrd-network.keypair.public-key))
|
||||
initrd-network-hosts);
|
||||
in concatLists (builtins.trace recs recs);
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue