From 4e9154173d7fccb7110ef642cc0a6a379643d6d3 Mon Sep 17 00:00:00 2001 From: Philip Taron Date: Tue, 24 Mar 2026 15:14:16 -0700 Subject: [PATCH] nixosTests.ec2-nixops: fix image.imageFile -> image.fileName The image.imageFile option was renamed to image.fileName. This broke the ec2-nixops test at evaluation time. --- nixos/tests/ec2.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/ec2.nix b/nixos/tests/ec2.nix index 7a336445d793..ae9a79db5403 100644 --- a/nixos/tests/ec2.nix +++ b/nixos/tests/ec2.nix @@ -59,7 +59,7 @@ let } ]; }).config; - image = "${imageCfg.system.build.amazonImage}/${imageCfg.image.imageFile}"; + image = "${imageCfg.system.build.amazonImage}/${imageCfg.image.fileName}"; sshKeys = import ./ssh-keys.nix pkgs; snakeOilPrivateKey = sshKeys.snakeOilPrivateKey.text;