From ccd5c3b0b1551952735b799fe9c75236d4b5264d Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Fri, 23 Aug 2024 19:36:12 +0200 Subject: [PATCH] examples(qemu): add mipsel-linux as host platform Signed-off-by: Raito Bezarius --- examples/hello-from-qemu.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/examples/hello-from-qemu.nix b/examples/hello-from-qemu.nix index 9e56f18..14b718a 100644 --- a/examples/hello-from-qemu.nix +++ b/examples/hello-from-qemu.nix @@ -41,4 +41,6 @@ in rec { defaultProfile.packages = with pkgs; [ figlet ]; + + nixpkgs.hostPlatform = lib.mkDefault "mipsel-linux"; }