Added armv6l-linux as a system

This commit is contained in:
Sebastian 2023-11-05 15:59:39 +01:00
parent c2ac98421b
commit 7af794ee17

View file

@ -15,7 +15,10 @@
}; };
outputs = { self, nixpkgs, utils }: outputs = { self, nixpkgs, utils }:
utils.lib.eachDefaultSystem let
systems = utils.lib.system;
in
utils.lib.eachSystem [ systems.x86_64-linux systems.aarch64-linux systems.armv6l-linux ]
(system: (system:
let let
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};