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).
This commit is contained in:
Erik Arvstedt 2022-07-17 10:33:22 +02:00
parent 7a40c39d5c
commit fe2df830a2
No known key found for this signature in database
GPG Key ID: 33312B944DD97846
1 changed files with 6 additions and 1 deletions

View File

@ -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 = {