From fe2df830a2659ed1fb5b4bbf5302e91d4817caca Mon Sep 17 00:00:00 2001 From: Erik Arvstedt Date: Sun, 17 Jul 2022 10:33:22 +0200 Subject: [PATCH] flake: add system `armv7l-linux` There are some ARMv7 single board computers that are capable of running a bitcoin node (see https://nixos.wiki/wiki/NixOS_on_ARM). --- flake.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 6a4ad3d..116bdcc 100644 --- a/flake.nix +++ b/flake.nix @@ -12,7 +12,12 @@ outputs = { self, nixpkgs, nixpkgsUnstable, flake-utils }: let - supportedSystems = [ "x86_64-linux" "i686-linux" "aarch64-linux" ]; + supportedSystems = [ + "x86_64-linux" + "i686-linux" + "aarch64-linux" + "armv7l-linux" + ]; in { lib = { mkNbPkgs = {