error: … while evaluating the attribute 'drvPath' at «github:NixOS/nixpkgs/9fbb54b33e91ee4ca368e35a78e0613c720600b3?narHash=sha256-cV5xEJJK3BvhU8rEd4mC9UsmDi5qscv/kzGPhBRC5WA%3D»/lib/customisation.nix:416:11: 415| // { 416| drvPath = | ^ 417| assert condition; … while calling the 'derivationStrict' builtin at «nix-internal»/derivation-internal.nix:37:12: 36| 37| strict = derivationStrict drvAttrs; | ^ 38| … while evaluating the option `driverConfigurationFile': … while evaluating the option `driverConfiguration.vms.machine.start_script': … while evaluating definitions from `/nix/store/ww3132d3ajq53n9xx2s8mic73jk91j4r-source/nixos/lib/testing/driver-configuration.nix': … while evaluating the option `nodes.machine.system.build.toplevel': … while evaluating definitions from `/nix/store/ww3132d3ajq53n9xx2s8mic73jk91j4r-source/nixos/modules/system/activation/top-level.nix': … while evaluating the option `nodes.machine.assertions': … while evaluating definitions from `/nix/store/ww3132d3ajq53n9xx2s8mic73jk91j4r-source/nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix': … while evaluating the option `nodes.machine.boot.loader.systemd-boot.extraFiles': … while evaluating definitions from `/nix/store/ww3132d3ajq53n9xx2s8mic73jk91j4r-source/nixos/modules/system/boot/loader/systemd-boot/systemd-boot.nix': (stack trace truncated; use '--show-trace' to show the full, detailed trace) error: Refusing to evaluate package 'memtest86+-8.10' in /nix/store/ww3132d3ajq53n9xx2s8mic73jk91j4r-source/pkgs/by-name/me/memtest86plus/package.nix:38 because it is not available on the requested hostPlatform: hostPlatform.system = "aarch64-linux" package.meta.platforms = [ "x86_64-linux" "i686-linux" ] package.meta.badPlatforms = [ ] a) To temporarily allow packages that are unsupported for this system, you can use an environment variable for a single invocation of the nix tools. $ export NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1 Note: When using `nix shell`, `nix build`, `nix develop`, etc with a flake, then pass `--impure` in order to allow use of environment variables. b) For `nixos-rebuild` you can set { nixpkgs.config.allowUnsupportedSystem = true; } in configuration.nix to override this. c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add { allowUnsupportedSystem = true; } to ~/.config/nixpkgs/config.nix.