allow x86-64 for testing

This commit is contained in:
raf 2023-11-28 20:45:18 +03:00
parent eb828c2f17
commit 69eeadfa05
No known key found for this signature in database
GPG key ID: 02D1DD3FA08B6B29
2 changed files with 2 additions and 2 deletions

View file

@ -6,7 +6,7 @@
self,
nixpkgs,
}: let
systems = ["aarch64-linux"];
systems = ["aarch64-linux" "x86_64-linux"];
forEachSystem = nixpkgs.lib.genAttrs systems;
pkgsForEach = nixpkgs.legacyPackages;
in rec {

View file

@ -56,7 +56,7 @@ in
description = "An air quality monitoring service with a Raspberry Pi and a SDS011 sensor. ";
homepage = "https://github.com/rydercalmdown/pi_air_quality_monitor";
mainProgram = pname;
platforms = with lib.platforms; ["aarch64-linux"];
platforms = ["aarch64-linux" "x86_64-linux"];
maintainers = with lib.maintainers; [NotAShelf];
};
}