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:
parent
7a40c39d5c
commit
fe2df830a2
1 changed files with 6 additions and 1 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue