From ae7905a5f5d4e15d69e2023ad8d01ed64cbdeced Mon Sep 17 00:00:00 2001 From: Oleks Date: Fri, 13 Mar 2026 01:01:35 +0200 Subject: [PATCH] Add custom system list: x86_64-linux, aarch64-linux, s390x-linux --- flake.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 7f2dbc3..98ab489 100644 --- a/flake.nix +++ b/flake.nix @@ -15,7 +15,14 @@ flake-utils, ... }: - flake-utils.lib.eachDefaultSystem ( + let + supportedSystems = [ + "x86_64-linux" + "aarch64-linux" + "s390x-linux" + ]; + in + flake-utils.lib.eachSystem supportedSystems ( system: let pkgs = import nixpkgs { inherit system; };