Add custom system list: x86_64-linux, aarch64-linux, s390x-linux

This commit is contained in:
Oleks
2026-03-13 01:01:35 +02:00
parent 2e91b76026
commit ae7905a5f5
+8 -1
View File
@@ -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; };