1error:2 … while calling the 'derivationStrict' builtin3 at «nix-internal»/derivation-internal.nix:37:12:4 36|5 37| strict = derivationStrict drvAttrs;6 | ^7 38|89 … while evaluating derivation 't3code-0.0.33'10 whose name attribute is located at «github:NixOS/nixpkgs/6b5e5b7a6631f065bf6908986990b37d845f847f?narHash=sha256-smTKQXMLLStzc8zJevMCckbk3My7SvbbLmPYZUJJKW4%3D»/pkgs/stdenv/generic/make-derivation.nix:651:111112 … while evaluating attribute 'installPhase' of derivation 't3code-0.0.33'13 at /var/lib/nixbot/worktrees/71-fc81bc02a1b0-d526d9be/packages/t3code/package.nix:165:3:14 164|15 165| installPhase = ''16 | ^17 166| runHook preInstall1819 (stack trace truncated; use '--show-trace' to show the full, detailed trace)2021 error: Refusing to evaluate package 'bubblewrap-0.11.2' in /nix/store/kf2fs0z94g2xb7byhhgnc37082qd93ws-source/pkgs/by-name/bu/bubblewrap/package.nix:55 because it is not available on the requested hostPlatform:22 hostPlatform.system = "aarch64-darwin"23 package.meta.platforms = [24 "x86_64-linux"25 "aarch64-linux"26 "arc-linux"27 "armv5tel-linux"28 "armv6l-linux"29 "armv7a-linux"30 "armv7l-linux"31 "i686-linux"32 "loongarch64-linux"33 "m68k-linux"34 "sh4-linux"35 "microblaze-linux"36 "microblazeel-linux"37 "mips-linux"38 "mips64-linux"39 "mips64el-linux"40 "mipsel-linux"41 "powerpc-linux"42 "powerpc64-linux"43 "powerpc64le-linux"44 "riscv32-linux"45 "riscv64-linux"46 "s390-linux"47 "s390x-linux"48 ]49 package.meta.badPlatforms = [ ]5051 a) To temporarily allow packages that are unsupported for this system, you can use an environment variable52 for a single invocation of the nix tools.5354 $ export NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=15556 Note: When using `nix shell`, `nix build`, `nix develop`, etc with a flake,57 then pass `--impure` in order to allow use of environment variables.5859 b) For `nixos-rebuild` you can set60 { nixpkgs.config.allowUnsupportedSystem = true; }61 in configuration.nix to override this.6263 c) For `nix-env`, `nix-build`, `nix-shell` or any other Nix command you can add64 { allowUnsupportedSystem = true; }65 to ~/.config/nixpkgs/config.nix.