From 13c3f29d494a947df03349447ae46f53608ee5e6 Mon Sep 17 00:00:00 2001 From: isabel Date: Thu, 13 Jun 2024 22:40:41 +0100 Subject: [PATCH] feat: inital support for x86_64-linux --- foundation/src/stages/stage1/musl/boot.nix | 1 - foundation/src/system/default.nix | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/foundation/src/stages/stage1/musl/boot.nix b/foundation/src/stages/stage1/musl/boot.nix index 4b1e2fa..9c1b8c7 100644 --- a/foundation/src/stages/stage1/musl/boot.nix +++ b/foundation/src/stages/stage1/musl/boot.nix @@ -131,7 +131,6 @@ in # Install make install cp ${stage1.tinycc.mes.libs.package}/lib/libtcc1.a $out/lib - ''; }; }; diff --git a/foundation/src/system/default.nix b/foundation/src/system/default.nix index d30880c..bb4d039 100644 --- a/foundation/src/system/default.nix +++ b/foundation/src/system/default.nix @@ -3,7 +3,7 @@ options.aux = { system = lib.options.create { type = lib.types.string; - default.value = "i686-linux"; + default.value = "x86_64-linux"; description = '' The system to build packages for. This value can be provided as either `config.aux.system` or by setting the `system` argument for modules.