A normal usage of SSH is to execute ssh -i id. target.extraOptions expects that there's no space between -i and id. If there is, then it fails with a difficult to understand error message (note the double space before id)
Warning: Identity file id not accessible: No such file or directory.
The corresponding krops-configuration.nix contains [...] -e ssh -i\\\ id.
CC @erikarvstedt
A normal usage of SSH is to execute
ssh -i id.target.extraOptionsexpects that there's no space between-iandid. If there is, then it fails with a difficult to understand error message (note the double space beforeid)The corresponding
krops-configuration.nixcontains[...] -e ssh -i\\\ id.CC @erikarvstedt