From 8fa5f7410e9b8d979fd9f00a806857cd7a66607d Mon Sep 17 00:00:00 2001 From: Daylin Morgan Date: Thu, 22 Feb 2024 11:57:41 -0600 Subject: [PATCH] remove systems I don't actually use --- lib/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/default.nix b/lib/default.nix index 9a7248d..6289f6c 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -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});