From 6bfb5ee90a917aa2ea213dc72c5ef86f6aebba69 Mon Sep 17 00:00:00 2001 From: David Crompton Date: Tue, 5 Sep 2023 22:05:16 -0400 Subject: [PATCH] Emulate Riscv64 (for now) --- machines/universedesktop/configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/machines/universedesktop/configuration.nix b/machines/universedesktop/configuration.nix index 5f94bf7..1977144 100644 --- a/machines/universedesktop/configuration.nix +++ b/machines/universedesktop/configuration.nix @@ -33,6 +33,12 @@ boot.loader.systemd-boot.enable = true; boot.loader.efi.canTouchEfiVariables = true; + # Allow for emulating these platforms + boot.binfmt.emulatedSystems = [ + "riscv64-linux" + ]; + + ## Bridged Network Config networking.hostName = "universedesktop";