From f62e92ff98714b4e774092bcaeefe9748fce81b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Charlotte=20=F0=9F=A6=9D=20Delenk?= Date: Sat, 16 Nov 2024 09:03:08 +0100 Subject: [PATCH] =?UTF-8?q?don=E2=80=99t=20use=20lix=20for=20nixos-option?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- machine/not522/cross-packages.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/machine/not522/cross-packages.nix b/machine/not522/cross-packages.nix index 65d8ea38..13d95f87 100644 --- a/machine/not522/cross-packages.nix +++ b/machine/not522/cross-packages.nix @@ -10,11 +10,16 @@ let crossSystem.system = "riscv64-linux"; overlays = [ lix.overlays.default ]; }; + pkgs_x86_64_2 = import nixpkgs { + system = "x86_64-linux"; + crossSystem.system = "riscv64-linux"; + }; in { nixpkgs.overlays = [ (self: super: { - inherit (pkgs_x86_64) lix nixos-option; + inherit (pkgs_x86_64) lix; + inherit (pkgs_x86_64_2) nixos-option; }) ]; }