remove systems I don't actually use

This commit is contained in:
Daylin Morgan 2024-02-22 11:57:41 -06:00
parent 864c8d2095
commit 8fa5f7410e
Signed by: daylin
GPG Key ID: C1E52E7DD81DF79F
1 changed files with 2 additions and 1 deletions

View File

@ -9,7 +9,8 @@
inherit (nixpkgs.lib) hasSuffix nixosSystem genAttrs;
inherit (nixpkgs.lib.filesystem) listFilesRecursive;
supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"];
#supportedSystems = ["x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin"];
supportedSystems = ["x86_64-linux" ];
runes = import ../modules/runes;
in rec {
forAllSystems = f: genAttrs supportedSystems (system: f nixpkgs.legacyPackages.${system});