aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay <[email protected]>2021-12-09 05:08:14 +0000
committerGitHub <[email protected]>2021-12-09 05:08:14 +0000
commit714769597137d1f378487852c967a42416a974e2 (patch)
treebd045301c60487b01b0f2975d9bb56c57dc384bb
parentd6e9ebcc11d214e6dc14483680f9c59c68728620 (diff)
parent43964c400850237927544df5d5a13a33150717af (diff)
Merge pull request #26 from Gerschtli/aarch64
Add aarch64-linux as supported system in flake.nix
-rw-r--r--flake.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index 8809d64..c598bdf 100644
--- a/flake.nix
+++ b/flake.nix
@@ -24,7 +24,7 @@
24 let 24 let
25 inherit (gitignore.lib) gitignoreSource; 25 inherit (gitignore.lib) gitignoreSource;
26 26
27 supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-darwin" ]; 27 supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
28 forAllSystems = nixpkgs.lib.genAttrs supportedSystems; 28 forAllSystems = nixpkgs.lib.genAttrs supportedSystems;
29 nixpkgsFor = forAllSystems (system: 29 nixpkgsFor = forAllSystems (system:
30 import nixpkgs { 30 import nixpkgs {