Skip to content

Commit

Permalink
Enable VMWare Guest Support for aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
abhillman committed Oct 10, 2022
1 parent 5e48b0d commit a6380db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/modules/virtualisation/vmware-guest.nix
Expand Up @@ -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}";
} ];

Expand Down

0 comments on commit a6380db

Please sign in to comment.