Merge pull request #1420 from NixOS/nix-2.23

`sshPublicHostKey` fix for `master`
This commit is contained in:
John Ericson 2024-10-24 17:03:20 +02:00 committed by GitHub
commit f974891c76
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -171,7 +171,7 @@ void State::parseMachines(const std::string & contents)
std::move(mandatoryFeatures),
// `sshPublicHostKey`
tokens[7] != "" && tokens[7] != "-"
? base64Decode(tokens[7])
? tokens[7]
: "",
});