nixosTests.lxd-image-server: use stdenv.hostPlatform.system

`pkgs.system` is an alias
This commit is contained in:
zowoq 2022-10-23 14:16:44 +10:00
parent 6be42bf92d
commit a231a1f91c

View file

@ -8,8 +8,8 @@ let
}; };
}; };
lxd-image-metadata = lxd-image.lxdMeta.${pkgs.system}; lxd-image-metadata = lxd-image.lxdMeta.${pkgs.stdenv.hostPlatform.system};
lxd-image-rootfs = lxd-image.lxdImage.${pkgs.system}; lxd-image-rootfs = lxd-image.lxdImage.${pkgs.stdenv.hostPlatform.system};
in { in {
name = "lxd-image-server"; name = "lxd-image-server";