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