diff --git a/modules/emulated-systems.nix b/modules/emulated-systems.nix new file mode 100644 index 0000000..3c9fd17 --- /dev/null +++ b/modules/emulated-systems.nix @@ -0,0 +1,9 @@ +{ config, lib, ... }: with lib; + +systemConfiguration { + boot.binfmt.emulatedSystems = remove config.nixpkgs.hostPlatform.system [ + "aarch64-linux" + "riscv64-linux" + "x86_64-linux" + ]; +}