Skip to content

Commit 423cfe2

Browse files
committed
allow flake-lang to be used on aarch64-darwin and aarch64-linux
1 parent d1f4869 commit 423cfe2

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

Diff for: flake.nix

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454

5555
outputs = inputs@{ flake-parts, ... }:
5656
flake-parts.lib.mkFlake { inherit inputs; } ({ flake-parts-lib, withSystem, ... }: {
57-
systems = [ "x86_64-linux" "x86_64-darwin" ];
57+
systems = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ];
5858

5959
imports = [
6060
# Project configuration

Diff for: templates/haskell/flake.nix

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
systems = [
1111
"x86_64-linux"
1212
"x86_64-darwin"
13+
"aarch64-linux"
14+
"aarch64-darwin"
1315
];
1416

1517
imports = [

Diff for: templates/rust-monorepo/flake.nix

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111
systems = [
1212
"x86_64-linux"
1313
"x86_64-darwin"
14+
"aarch64-linux"
15+
"aarch64-darwin"
1416
];
1517

1618
imports = [

Diff for: templates/typescript/flake.nix

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
systems = [
1111
"x86_64-linux"
1212
"x86_64-darwin"
13+
"aarch64-linux"
14+
"aarch64-darwin"
1315
];
1416

1517
imports = [

0 commit comments

Comments
 (0)