nixos/virtualbox: Enable virtualbox guest additions module on aarch64

This commit is contained in:
Menken Philipp
2025-08-11 22:14:21 +02:00
parent 081fb20993
commit bb36ed77b8
@@ -104,7 +104,7 @@ in
{
assertions = [
{
assertion = pkgs.stdenv.hostPlatform.isx86;
assertion = pkgs.stdenv.hostPlatform.isx86 || pkgs.stdenv.hostPlatform.isAarch64;
message = "Virtualbox not currently supported on ${pkgs.stdenv.hostPlatform.system}";
}
];