fix deploy-rs: add StrictHostKeyChecking to sshOpts
Some checks failed
Deploy / flake-check (push) Successful in 35s
Deploy / deploy-cryodev-main (push) Failing after 23s
Deploy / build-pi-images (cryodev-pi) (push) Failing after 29s
Deploy / create-release (push) Has been skipped

deploy-rs ignores NIX_SSHOPTS and only uses its own sshOpts.
The host key verification prompt was blocking the non-interactive
CI pipeline. Adding accept-new to sshOpts directly.
This commit is contained in:
steffen 2026-03-14 14:28:56 +01:00
parent 8b467f071f
commit 4ef5199810

View file

@ -127,6 +127,8 @@
sshOpts = [ sshOpts = [
"-p" "-p"
"2299" "2299"
"-o"
"StrictHostKeyChecking=accept-new"
]; ];
profiles.system = { profiles.system = {
user = "root"; user = "root";