From ffbd671868cbc47430dd02ef42c44cb75967ddb2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Tue, 15 Aug 2023 16:11:10 +0300 Subject: [PATCH] preliminary rpi3b+ support thanks @K900 ! --- flake.nix | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 945f420..00eb2a9 100644 --- a/flake.nix +++ b/flake.nix @@ -99,7 +99,17 @@ }; nixosConfigurations.vno1-rp3b = nixpkgs.lib.nixosSystem { - system = "aarch64-linux"; + # unstable + #pkgs = import nixpkgs { + # hostPlatform.config = "aarch64-linux"; + # buildPlatform.config = "x86_64-linux"; + #}; + + pkgs = import nixpkgs { + system = "aarch64-linux"; + crossSystem = "x86_64-linux"; + }; + modules = [ ./hosts/vno1-rp3b/configuration.nix