From a6380db96e53b3bfc1969410c656fd0eb1ad82b2 Mon Sep 17 00:00:00 2001 From: Aryeh Hillman Date: Sun, 9 Oct 2022 22:07:52 -0700 Subject: [PATCH] Enable VMWare Guest Support for aarch64 https://github.com/NixOS/nixpkgs/issues/147650 --- nixos/modules/virtualisation/vmware-guest.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/virtualisation/vmware-guest.nix b/nixos/modules/virtualisation/vmware-guest.nix index 3b4d484fc8b9fb..e748221e3f210c 100644 --- a/nixos/modules/virtualisation/vmware-guest.nix +++ b/nixos/modules/virtualisation/vmware-guest.nix @@ -23,7 +23,7 @@ in config = mkIf cfg.enable { assertions = [ { - assertion = pkgs.stdenv.hostPlatform.isx86; + assertion = pkgs.stdenv.hostPlatform.isx86 || pkgs.stdenv.hostPlatform.isAarch64;; message = "VMWare guest is not currently supported on ${pkgs.stdenv.hostPlatform.system}"; } ];