From 77777777007deffdd7237f7ce0690325c6bcc0eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Tue, 13 Jun 2023 19:31:50 +0200 Subject: [PATCH] Fix eval when aliases are disabled --- flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flake.nix b/flake.nix index b90361b..57ef11c 100644 --- a/flake.nix +++ b/flake.nix @@ -63,8 +63,8 @@ inherit system; crossSystem = { # linuxArch is wrong here, it will yield arm64 instead of aarch64. - config = "${pkgs.hostPlatform.qemuArch}-windows"; - rustc.config = "${pkgs.hostPlatform.qemuArch}-unknown-uefi"; + config = "${pkgs.stdenv.hostPlatform.qemuArch}-windows"; + rustc.config = "${pkgs.stdenv.hostPlatform.qemuArch}-unknown-uefi"; libc = null; useLLVM = true; };