From f042e08ecda24069c00ebbe859a5251902781fa2 Mon Sep 17 00:00:00 2001 From: Asmir A Date: Sat, 16 Mar 2024 17:12:06 +0100 Subject: [PATCH] Revert "flake: add arm64-linux target" This reverts commit 13bed0161527fc6a361d314e3dc01afa5d268b7e. --- flake.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index f684a5b..8e3fa94 100644 --- a/flake.nix +++ b/flake.nix @@ -9,7 +9,7 @@ self, nixpkgs, }: let - supportedSystems = ["x86_64-linux" "aarch64-linux" "arm64-linux"]; + supportedSystems = ["x86_64-linux" "aarch64-linux"]; forAllSystems = nixpkgs.lib.genAttrs supportedSystems; nixpkgsFor = forAllSystems (system: import nixpkgs {inherit system;}); in {