From c00672638a6831b5b37c4f44faf75611bba7f833 Mon Sep 17 00:00:00 2001 From: David Crompton Date: Fri, 12 Jul 2024 01:05:38 -0400 Subject: [PATCH] PineTabv: Cross build maybe? --- flake.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/flake.nix b/flake.nix index c07a75f..41a4951 100644 --- a/flake.nix +++ b/flake.nix @@ -58,12 +58,19 @@ }]; }; in nixpkgs-stable.lib.nixosSystem { + system = "x86_64-linux"; specialArgs = { inputs = attrs; }; modules = [ ./machines/ptv/configuration.nix patch-8gb + { + nixpkgs.crossSystem = { + config = "riscv64-unknown-linux-gnu"; + system = "riscv64-linux"; + }; + } ]; }; };