allow building for more systems

This commit is contained in:
Faez Shakil 2024-08-06 04:43:37 +05:00
parent 4b0967d3c5
commit 56167d1da3

View File

@ -6,7 +6,7 @@
outputs = {nixpkgs, flake-utils, ...}:
let
systems = [ "x86_64-linux" ];
systems = nixpkgs.lib.systems.flakeExposed;
in flake-utils.lib.eachSystem systems (system:
let
pkgs = import nixpkgs { inherit system; };