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;
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 (
system: let
inherit (nixCats) utils;