nixosTests.lxd: use stdenv.hostPlatform.system

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

View file

@ -11,8 +11,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";