Skip to content

Commit

Permalink
fix(flake): re-add {x86_64,aarch64}-darwin to flake-parts's systems
Browse files Browse the repository at this point in the history
Commit cf28dcf rewrote the main `flake.nix` to use `flake-parts`,
presumably without change for users, but there is actually one small
regression there. The main flake's `perSystem` outputs' `system`s were
reduced to only `["x86_64-linux" "aarch64-linux"]`, (accidentally)
removing `["x86_64-darwin" "aarch64-darwin"]`.
This commit adds them back (both in the main flake and in the example)
  • Loading branch information
reo101 committed Nov 25, 2024
1 parent 20799df commit 7e09eb9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions examples/flake-parts/flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
systems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];

flake = {
Expand Down
2 changes: 2 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@
systems = [
"x86_64-linux"
"aarch64-linux"
"x86_64-darwin"
"aarch64-darwin"
];

flake =
Expand Down

0 comments on commit 7e09eb9

Please sign in to comment.