about summary refs log tree commit diff
path: root/nixos/tests
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2022-10-23 14:16:44 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2022-10-23 15:10:13 +1000
commita231a1f91cf81de009010410d9fd74e48fecc14c (patch)
tree1851821f3aa9618104099534ff7ade021e3396d4 /nixos/tests
parent6be42bf92d6bd25491b20460b3b33efa13996ceb (diff)
nixosTests.lxd-image-server: use `stdenv.hostPlatform.system`
`pkgs.system` is an alias
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/lxd-image-server.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/tests/lxd-image-server.nix b/nixos/tests/lxd-image-server.nix
index 072f4570c2c9f..e5a292b61bd97 100644
--- a/nixos/tests/lxd-image-server.nix
+++ b/nixos/tests/lxd-image-server.nix
@@ -8,8 +8,8 @@ let
     };
   };
 
-  lxd-image-metadata = lxd-image.lxdMeta.${pkgs.system};
-  lxd-image-rootfs = lxd-image.lxdImage.${pkgs.system};
+  lxd-image-metadata = lxd-image.lxdMeta.${pkgs.stdenv.hostPlatform.system};
+  lxd-image-rootfs = lxd-image.lxdImage.${pkgs.stdenv.hostPlatform.system};
 
 in {
   name = "lxd-image-server";