nixfleet/modules/binfmt/default.nix
2022-10-08 17:37:56 +02:00

11 lines
167 B
Nix

{
config,
lib,
pkgs,
...
}: {
boot.binfmt.emulatedSystems = ["aarch64-linux"];
nix.extraOptions = ''
extra-platforms = aarch64-linux arm-linux
'';
}