nix.supportedPlatforms

extra platforms that nix will run binaries for

type

list of string

default

{
  nix.supportedPlatforms = [];
}

qemu-user.aarch64

Whether to enable enable 64bit arm emulation.

type

boolean

example

{
  qemu-user.aarch64 = true;
}

default

{
  qemu-user.aarch64 = false;
}

qemu-user.arm

Whether to enable enable 32bit arm emulation.

type

boolean

example

{
  qemu-user.arm = true;
}

default

{
  qemu-user.arm = false;
}

qemu-user.riscv64

Whether to enable enable 64bit riscv emulation.

type

boolean

example

{
  qemu-user.riscv64 = true;
}

default

{
  qemu-user.riscv64 = false;
}