restrict supported systems

This commit is contained in:
Daniel Winkler 2025-09-08 13:39:18 +10:00
commit f0b60b014a

View file

@ -280,7 +280,12 @@
updateDeps = prev.writeShellScriptBin "updateDeps" updateDepsScript; updateDeps = prev.writeShellScriptBin "updateDeps" updateDepsScript;
activateDevenv = prev.writeShellScriptBin "activateDevenv" activateDevenv; activateDevenv = prev.writeShellScriptBin "activateDevenv" activateDevenv;
}; };
forSystems = nixpkgs.lib.genAttrs nixpkgs.lib.platforms.all; supportedSystems = [
"x86_64-linux"
"aarch64-linux"
"aarch64-darwin"
];
forSystems = nixpkgs.lib.genAttrs supportedSystems;
projectConfig = forSystems ( projectConfig = forSystems (
system: let system: let
inherit (nixCats) utils; inherit (nixCats) utils;