From 7af794ee17f2aaac595340015651c07e28f873da Mon Sep 17 00:00:00 2001 From: Sebastian Date: Sun, 5 Nov 2023 15:59:39 +0100 Subject: [PATCH] Added armv6l-linux as a system --- flake.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index b5d2810..c13d761 100644 --- a/flake.nix +++ b/flake.nix @@ -15,7 +15,10 @@ }; 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: let pkgs = nixpkgs.legacyPackages.${system};